


		$(document).ready(function() {

				
				$(".div_sottomenu").css("opacity",0).animate({opacity: 1}, 500);
				
				
		
				$(".div_main_menu img").hover(function(){
					
					$(this).parent().find(".def").hide();
					$(this).parent().find(".sss").show().css("opacity",0.5).animate({opacity: 1}, 200);
					
				},function(){
					$(this).parent().find(".sss").hide();
					$(this).parent().find(".def").show().css("opacity",0.5).animate({opacity: 1}, 200);
					
				});

	
			});
			



