function mainmenu(){
$(" #nav ul ").css({display: "none"}); // Opera Fix
$(" #nav li").hover(function(){
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(400);
		},function(){
		$(this).find('ul:first').css({visibility: "hidden"});
		});
}

		
function adora(){
	$(" #credit span").css({display: "none"}); // Opera Fix
	$(" #credit a").hover(function(){
		$(this).find('span').css({visibility: "visible",display: "none"}).show(400);
		},function(){
		$(this).find('span').css({visibility: "hidden"});
		});
}
 
 $(document).ready(function(){					
	mainmenu();
	adora();
		$('.footer_content').hover(
			function(){
				$(this).find('img').fadeTo('fast',0.4);
				$(this).find('.label').css({background: "#D046A4"});
			},
			function(){
				$(this).find('img').fadeTo('fast',1);	
				$(this).find('.label').css({background: "#2F8EBF"});		
		});
		
		$('#products_container li a').hover(
			function(){
				$(this).find('img').fadeTo('fast',0.4);
				$(this).find('.proTitle').css({background: "#2F8EBF"});
			},
			function(){
				$(this).find('img').fadeTo('fast',1);	
				$(this).find('.proTitle').css({background: "#D046A4"});		
		});
});


