$(function()
{
	setSunday(-1);
	setGuestsFree();
	window.name='HDReservarPage';

	$(".button").mouseover(function(){
		$(this).addClass("over");
	});
	$(".button").mouseout(function(){
		$(this).removeClass("over");
	});
	
	$(".date_pick").mouseover(function(){
		$("img", this).attr("src", "img/icon_calendar_on.gif");
	}).mouseout(function(){
		$("img", this).attr("src", "img/icon_calendar.gif");
	});
	$("#arrive_pick").click(function(){
		openCalendar("http://www.hotelsdirect.es/calendarStart.htm");
		return false;
	});
	$("#depart_pick").click(function(){
		openCalendar("http://www.hotelsdirect.es/calendarEnd.htm");
		return false;
	});
	
	$("#nights").change(function(){
		setEndDate($(this).val());
	});
	
	$("#arrivedate, #arrivedate2").change(function(){
		setEndDate($("#nights").val());
	});
	
	$("#departdate, #departdate2").change(function(){
		setNoches();
	});
});
