// AJAX
function getData(a) {
if (window.XMLHttpRequest) {
request = new XMLHttpRequest();
} else {
   request = new ActiveXObject("Msxml2.XMLHTTP");
}
var message= "";

var url= a;
if (request) {
request.open("GET", url);
request.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8"); 
request.onreadystatechange = function() {
if (request.readyState == 4) {
document.getElementById("message").innerHTML = request.responseText;

	}
}
request.send(message);
}
else {
alert("Il tuo browser obsoleto non supporta ajax.");
}

}


		function openGal(aa,bb) {
			$('#divImg').css('visibility','visible').fadeIn('slow');
			
	$('#divImg').html('<div class="innerImg"><a href="javascript:closeGal();" class="close pngfix">&nbsp;</a><img src="'+aa+'"/></div><div class="innerText">'+bb+'</div>');
			$('#chiSiamo').fadeOut('slow');
			
		}	
			
		function closeGal() {
			$('#divImg').fadeOut('normal');
		}				
			
			
		function closeTitle() {
		$('#subTitle').css('visibility','visible').fadeIn('slow');	
		$('#message .scheda').fadeOut('normal');
		$('#message .galleria').fadeOut('normal');
		$('#divImg').fadeOut('slow');
		}
		
		function openTitle() {
		$('#subTitle').fadeOut('normal');
		$('#message .scheda').fadeIn('normal');
		$('#message .galleria').fadeIn('normal');
		}
		
		/* SEND POST CARD*/
		function openPCard() {
		$('#sendPostCard').css('visibility','visible').fadeIn('slow');	
		$('#message .scheda').fadeOut('normal');
		$('#message .galleria').fadeOut('normal');
		$('#divImg').fadeOut('slow');
		}
		
		function closePCard() {
		$('#sendPostCard').fadeOut('normal');
		$('#message .scheda').fadeIn('normal');
		$('#message .galleria').fadeIn('normal');
		}



		function closeSke() {
		$('#message').fadeOut('normal');
		$('#divImg').fadeOut('slow');
		$('#chiSiamo').fadeOut('slow');
		$('#subTitle').fadeOut('normal');
		}
		
		function openChisiamo() {
		$('#message').fadeOut('normal');
		$('#divImg').fadeOut('slow');
		$('#chiSiamo').css('visibility','visible').fadeIn('slow');
		}
		
		
		

		function openSke() {
			$('#message').show();
		$('#message').css('visibility','visible').fadeIn('slow');
		
		$('#chiSiamo').fadeOut('slow');
		
		}
		
		function closeTop() {
		setTimeout( "$('#myAlternativeContent').css('height','72px');", 650); 
		}
		
		function openTop() {
		$('#myAlternativeContent').css('height','240px');
		}		



    	
    	

		$(document).ready(function(){
		$('#message').hide();
		$('#divImg').hide();	

		$('#chiSiamo').hide();
		$('#subTitle').hide();
		$('#sendPostCard').hide();
		$('#divImg .innerImg a.close').hide();	
	
		$("#divImg").bind("mouseover", function(){
        	$('a.close').css('visibility','visible').fadeIn('slow');
        		  $('a.close').css('cursor','pointer');
    	});
    	
    		$("#divImg").bind("mouseleave", function(){
        	$('a.close').fadeOut('normal');
        	 $('a.close').css('cursor','default');
    	});

		
		});
		
		