// MENU TOP
$(document).ready(function() {
	
	// pngfix
	$(document).pngFix(); 
	
	// menù
	if($("#menu-top li").hover(
		function () {
			$(this).stop();
			$(this).animate({"opacity":0.8}, "fast");
	      },
		function () {
			$(this).stop();
			$(this).animate({"opacity":1}, "slow");
	      }
		)
	);
	
	if($(".prod").hover(
		function () {
	        $(this).fadeTo(500, 0.7);
	      },
		function () {
	        $(this).fadeTo(500, 1);
	      }
		)
	);
	
});