// popup approfondimenti

function mostraApprofondimento(img,p) {
	$('#approfondimento').fadeIn();
	$('#testo1 p').fadeOut();
	$('#testo2 a').fadeOut();
	if(p=='1b') {
		$('#video-libri-swf1').html('<img src="'+img+'" width="700" height="395" alt="" />');
	} else if(p=='1c') {
		$('#video-libri-swf2').html('<img src="'+img+'" width="700" height="395" alt="" />');
	} else if(p=='1a') {
		$('#video-libri-intervista').html('<img src="'+img+'" width="700" height="395" alt="" />');
	} else {
		$('#video-libri').html('<img src="'+img+'" width="700" height="395" alt="" />');
	}
}

//gestisce la popup sopra i video
function chiudiApprofondimento(video_file, video_img, isVideo, p) {
	$('#approfondimento').fadeOut();
	$('#testo2 a').fadeIn();
	$('#testo1 p').fadeIn();
	
	if(isVideo == '1') {
	var s1 = new SWFObject("/shared/swf/player.swf","ply","700","395","9","#000000");
		s1.addParam("allowfullscreen","true");
		s1.addParam("allowscriptaccess","always");
		s1.addParam("flashvars","file="+video_file+"&image="+video_img+"&controlbar=over&width=700&height=395&autostart=true");
	} else {
		var s1 = new SWFObject("/shared/swf/chi-siamo/"+video_file+"","ply","700","395","9","#000000");
	}
	
	if(p=='1b') {
		s1.write("video-libri-swf1");
	} else if(p=='1c') {
		s1.write("video-libri-swf2");
	} else if(p=='1a') {
		s1.write("video-libri-intervista");
	} else {
		s1.write("video-libri");
	}
}


// popup link info

function apriPopup(url, width, height) {
	window.open(url, 'popup', 'width='+width+', height='+height+', toolbar=no, scrollbars=1');
	
}


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