// JavaScript Document
jQuery(function($) {
var timer;
function gallery_hover(event)
{       $("#image_hover").stop().animate({ //Animate and expand the image and mask
			width: '464px',
			height: '347px',
			top: 349,
			left: 602
			}, 300, "linear" );
	 $("#image_hover").fadeOut(200);
	 $("#maschera_sopra").delay(500).fadeOut(300);
	 $("#chiudi").delay(500).fadeIn(300);
	 $("#chiudi").css("height","100px");

	 // $("#scrollContainer").show(1000);
   
}


function gallery_out(event)
{	 $("#chiudi").css("height","300px");	
	 $("#image_hover").delay(200).fadeIn(200);
	 $("#maschera_sopra").fadeIn(200);
	 $("#image_hover").stop().animate({ //Animate and expand the image and mask
			width: '198px',
			height: '149px',
			top: 517,
			left: 774
			}, 600, "linear" );
	  $("#chiudi").delay(300).fadeOut(200);
	  $("#chiudi").css("height","100px");

    
}
$('#image_hover').bind('mouseover', gallery_hover);
$('.chiudi_g').bind('click', gallery_out)

//button2_click();
});
