
//Reservation Box Button Hover Effect
/*
onload = function changeimage()
{
	e=document.getElementById('check');
	e.onmouseover= function () {
	e.src="images/check_availability_mover2.gif";
	}
	e.onmouseout= function () {
	e.src="images/check_availability.gif";
	}
} */

//Apply Now Button Hover Effect
/* onload = function changeapply()
{
	f=document.getElementById('apply');
	f.onmouseover= function over () {
	f.src="images/apply_now_hover.gif";
	}
	f.onmouseout= function down () {
	f.src="images/apply_now.gif";
	}
} */

//Listing DIV Hover Effect
 function highlight(hoverItem,x)
{
	//alert("item_list"+x);
	hl = document.getElementById("item_list"+x);
	hl.style.backgroundColor = "#fbf4e2";
}
 function dehighlight(hoverItem,x)
{

	hl = document.getElementById("item_list"+x);
	hl.style.backgroundColor = "#f3ebd4";
}
