$(document).ready(function() {
	// slider
	/*
	$('#coin-slider').coinslider({ 
		width: 683,
		height: 376,
		delay: 5000,
		opacity: 1
	});
	*/
	//$('#ReservationForm1').jqTransform({imgPath:'jqtransformplugin/img/'});	
	$('.menu a').hover(function(){$(this).stop().animate({backgroundPosition:'0px -22px'}, 600, 'easeOutElastic')}, function(){$(this).stop().animate({backgroundPosition:'0px -100px'}, 200)});
	var day=['DOMENICA','LUNEDI','MARTEDI','MERCOLEDI','GIOVEDI','VENERDI','SABATO'],
	   month=['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno','Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'];
   SetData();
   function SetData() {
	   var now = new Date();
	   $('.date1').html(day[now.getDay()]+', ');
	   $('.date1').append(now.getDate()+' ');
		$('.date1').append(' '+month[now.getMonth()]+' ');
	   $('.date1').append(now.getFullYear()+' ');
	   hour=now.getHours();
	   minutes=now.getMinutes();
	   if (minutes<10) {minutes='0'+minutes};
	   $('.date1').append(hour+':'+minutes);
	}
  	setInterval(SetData,60);
});
								var NeWind;								
								function openWinDett(codag) {
									var TxtHtml = new String("");
									//Se esiste una finestra già aperta la chiude!						
									if (typeof(NeWind) != "undefined") {
										if (!NeWind.closed) {
											NeWind.close();
										};
									};
									var WinParam = "Height=600,Width=500,scrollbars=yes,resizable=no"   /* new riga */
									NeWind = window.open("schedag.aspx?codag=" + codag,"Arcoimmobiliare",WinParam);
								}															



