$(document).ready(function() {
	// Make some background images clickable
	var main_image_left  = $("#main-left-image");
	var main_image_right = $("#main-right-image");
	main_image_left.mouseover(function() {
		$(this).css("cursor", "pointer");
		$(this).attr("title", "Stay With Us");
	});
	main_image_right.mouseover(function() {
		$(this).css("cursor", "pointer");
		$(this).attr("title", "Play With Us");
	});
	main_image_left.click(function() {
		self.location.href='/Pages/accomodations.html';
	});
	main_image_right.click(function() {
		self.location.href='/Pages/entertaiment.html';
	});
});

