//Menu
function mainmenu(){
jQuery(" #menu ul ").css({display: "none"}); // Opera Fix
jQuery(" #menu li").hover(function(){
		jQuery(this).find('ul:first').css({visibility: "visible",display: "none"}).fadeIn(400);
		},function(){
		jQuery(this).find('ul:first').css({visibility: "hidden"});
		});
}
 jQuery(document).ready(function(){					
	mainmenu();
});


//CUFON
Cufon.replace('a.entry-title', { hover: true });
Cufon('a.entry-title', { color: '#202020', hover: {	color: '#000' }	});
Cufon.replace('h1, h2, h3, #sidebar h4, span.number');


jQuery("#catalog ul li:last-child ").css('border-bottom','0');
jQuery("#products ul li:last-child ").css('border-bottom','0');
	


//Portfolio Hover
jQuery(document).ready(function(){
	//Set opacity on each span to 0%
    jQuery(".hover").css({'opacity':'0'});
	jQuery('.fade a').hover(
		function() {
			jQuery(this).find('.hover').stop().fadeTo(400, 0.5);
		},
		function() {
			jQuery(this).find('.hover').stop().fadeTo(300, 0);
		}
	)
});



	

