$(function() {
  var themePath = Drupal.settings.theme_path;

  $("a.cufon-set").mouseover(function () {
    Cufon.set('fontFamily', $(this).attr('id'));
    Cufon.replace('h1#sitename a, h1.nodetitle a, #navbar > div> ul > li > a, div.breadcrumb a', {
        hover: true
    });
    Cufon.replace('h1, h2, h3, h4, h5, h6, p.mission, p.slogan, .views-field-title, legend:not(.collapse-processed)');
  });

  $("body.page-node-181 #content input#edit-submit,body.page-node-181 #content input#edit-reset").click(function () {
    alert('Sorry, you cannot change the settings of this demo site!');
	return false;
  });

});