jQuery(document).ready(function($) {

$("#mainmenu li").hover(function(){
	 $(this).stop().addClass('hover');
}, function () {
$(this).stop().removeClass('hover');

});


$("#mainmenu li a").hover(function(){
 $(this).stop().removeAttr('title');
}, function () {
 $(this).stop().removeAttr('title')
});


//$("#mainmenu .current_page_item a, #mainmenu .current_page_parent a, #mainmenu .current-cat a, #mainmenu .hover a").hover(function(){
// $(this).stop();
//}, function () {
// $(this).stop();
//});

$(".fade img").hover(function(){
$(this).stop().fadeTo("fast", 0.85); // Set the opacity to 100% on hover
},function(){
$(this).stop().fadeTo("fast", 1.0); // Set the opacity back to 75% on mouseout
});

$("#menu-social a").hover(function(){
$(this).stop().fadeTo("fast", 1.0); // Set the opacity to 100% on hover
},function(){
$(this).stop().fadeTo("fast", 0.85); // Set the opacity back to 60% on mouseout
});

$(".sociable img").hover(function(){
$(this).stop().fadeTo("fast", 1.0); // Set the opacity to 100% on hover
},function(){
$(this).stop().fadeTo("fast", 0.75); // Set the opacity back to 60% on mouseout
});

$("#filter-tabs").tabs();

});

Cufon.replace('h1, h3, h4, #mainmenu li', {hover: true, fontFamily: 'gothambold' });
//Cufon.replace('h2', {hover: true, fontFamily: 'gothambook' });