// --- Provide style hook for :hover state of button elements
$(document).ready(function() {
    $('button').hover(function() {
      $(this).addClass('hoverme');
    }, function() {
      $(this).removeClass('hoverme');
    });
  });

$(document).ready(function(){
	$('a.toggle').click(function()
  {
    $(this).parent().next().toggle();
    return false;
  }
);
});
  
$(function () {
	$.sifr({path:'/themes/default/fonts'});
	$('h2').sifr({font:'Trajan_Pro'});
	$('dt.boxHead').sifr({font:'Trajan_Pro'});
});

$(function(){
	$('ul.sf-menu').superfish();
});  