$(function(){
		   
	var $usrAgnt = new String(navigator.userAgent);
	var $IE7 	 = $usrAgnt.indexOf("MSIE 7");
	
	$('.open-news').click(function(){
		$('#fullScreen-message0').animate({width:"100%", height:"100%"}, {duration:500})
	})
	$('.close-fullScreen-message0').click(function(){
		$('#fullScreen-message0').stop().animate({width:"100%", height:0}, {queue:true, duration:500})
	})
	
	$('.open-contatti').click(function(){
		$('#fullScreen-message1').animate({width:"100%", height:"100%"}, {duration:500})
		//setTimeout("animateBoxContatti()",200)
	})
	$('.close-fullScreen-message1').click(function(){
		$('#fullScreen-message1').stop().animate({width:"100%", height:0}, {queue:true, duration:500})
		clearForm('form-contatti-box-blocco1','form-contatti-box-blocco2',1,5)

	})
	
	$('.open-dovesiamo').click(function(){
		$('#fullScreen-message2').animate({width:"100%", height:"100%"}, {duration:500})
		vismap(1)
	})
	$('.close-fullScreen-message2').click(function(){
	   vismap(0)
		$('#fullScreen-message2').stop().animate({width:"100%", height:0}, {queue:true, duration:500})
	})
	
	$('.open-job').click(function(){
		$('#fullScreen-message3').animate({width:"100%", height:"100%"}, {duration:500})
	})
	$('.close-fullScreen-message3').click(function(){
		$('#fullScreen-message3').stop().animate({width:"100%", height:0}, {queue:true, duration:500})
	})

	$('.open-preventivo').click(function(){
		$('#fullScreen-message4').animate({width:"100%", height:"100%"}, {duration:500})
		//setTimeout("animateBoxContatti()",200)
	})
	$('.close-fullScreen-message4').click(function(){
		$('#fullScreen-message4').stop().animate({width:"100%", height:0}, {queue:true, duration:500})
		clearForm('form-preventivo-box-blocco1','form-preventivo-box-blocco2',201,204)
	})


	$('.bottone-indicazioni-mappa').click(function(){
		$(this).find('.testo-indicazioni-mappa').toggle(600);
		setTimeout ( "get_scroll_pane()" , 800);
	})

});


function clearForm(a,b,cFrom,cTo){
	for(i=cFrom;i<=cTo;i++){
		document.getElementById("elm"+i).value="";
		document.getElementById("error"+i).innerHTML="";
	}
	document.getElementById(a).style.display="";
	document.getElementById(b).style.display="none";
}
function vismap(f){
	if(f==1){
		document.getElementById("goomap").style.display=""
		document.getElementById("goomap").innerHTML="<iframe width=\"700\" height=\"350\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.it/maps/ms?ie=UTF8&amp;hl=it&amp;msa=0&amp;msid=116269233230334464636.00047ff0b2afe331387c1&amp;source=embed&amp;ll=40.981972,14.242401&amp;spn=0.362852,0.961304&amp;z=10&amp;output=embed\"></iframe>"
		}
	if(f==0){
		document.getElementById("goomap").style.display="none"
		document.getElementById("goomap").innerHTML=""
	}
}
	
	
