$(document).ready(
	function()
	{
		$("#rotating div.property-gallery dt a").click(
			function(event)
			{
				thumbnailClicked($(this));
				event.stopImmediatePropagation();
				return false;
			}
		);
		$("#main-image img").bind("load", function(){
			$(this).queue("fx", []);
			$(this).stop();
			$(this).fadeTo("slow", 1);
		});
	}
);

function thumbnailClicked(obj)
{
	$("div.property-gallery dt a img").removeClass("selected");
	$("#main-image img").queue("fx", []);
	$("#main-image img").stop();
	$("#main-image img").fadeTo('slow', 0.5);
	switch(obj.attr("href"))
	{
		case 'http://www.islandclubvillarentals.com/112-starboard-trail/':
			$("#main-image img").attr("src", "http://www.islandclubvillarentals.com/wp/wp-content/themes/primepress/headers/header-112.jpg");
			obj.children("img").addClass("selected");
			$("#main-image a").attr("href", obj.attr("href"));
			$("#main-image p a").text("112 Starboard Trail");
			break;

		case 'http://www.islandclubvillarentals.com/107-starboard-trail/':
			$("#main-image img").attr("src", "http://www.islandclubvillarentals.com/wp/wp-content/themes/primepress/headers/header-107.jpg");
			obj.children("img").addClass("selected");
			$("#main-image a").attr("href", obj.attr("href"));
			$("#main-image p a").text("107 Starboard Trail");
			break;

		case 'http://www.islandclubvillarentals.com/103-starboard-trail/':
			$("#main-image img").attr("src", "http://www.islandclubvillarentals.com/wp/wp-content/themes/primepress/headers/header-103.jpg");
			obj.children("img").addClass("selected");
			$("#main-image a").attr("href", obj.attr("href"));
			$("#main-image p a").text("103 Starboard Trail");
			break;

		case 'http://www.islandclubvillarentals.com/82-leeward-lane/':
			$("#main-image img").attr("src", "http://www.islandclubvillarentals.com/wp/wp-content/themes/primepress/headers/header-82.jpg");
			obj.children("img").addClass("selected");
			$("#main-image a").attr("href", obj.attr("href"));
			$("#main-image p a").text("82 Leeward Lane");
			break;

		case 'http://www.islandclubvillarentals.com/79-leeward-lane/':
			$("#main-image img").attr("src", "http://www.islandclubvillarentals.com/wp/wp-content/themes/primepress/headers/header-79.jpg");
			obj.children("img").addClass("selected");
			$("#main-image a").attr("href", obj.attr("href"));
			$("#main-image p a").text("79 Leeward Lane");
			break;

		case 'http://www.islandclubvillarentals.com/64-leeward-lane/':
			$("#main-image img").attr("src", "http://www.islandclubvillarentals.com/wp/wp-content/themes/primepress/headers/header-64.jpg");
			obj.children("img").addClass("selected");
			$("#main-image a").attr("href", obj.attr("href"));
			$("#main-image p a").text("64 Leeward Lane");
			break;

		case 'http://www.islandclubvillarentals.com/62-leeward-lane/':
			$("#main-image img").attr("src", "http://www.islandclubvillarentals.com/wp/wp-content/themes/primepress/headers/header-62.jpg");
			obj.children("img").addClass("selected");
			$("#main-image a").attr("href", obj.attr("href"));
			$("#main-image p a").text("62 Leeward Lane");
			break;
	}
}
