$(document).ready(function() {

 	$("a.vt").fancybox({type: 'iframe', height: '70%', width: '70%'});
	$("a.st_extended").fancybox({content: $("div.div_scheda_tecnica_extended"), height: '70%', width: '70%'});
	
	

    $("#tabs").tabs();
 

	$(".div_main_menu a").hover(function(){
			$(this).parent().parent().find(".sss").hide();
			$(this).parent().parent().find(".def").show();
			$(this).find(".def").hide();
			$(this).find(".sss").show();
			
		},function(){
			$(this).parent().parent().find(".sss").hide();
			$(this).parent().parent().find(".def").show();
		});



});	



