jQuery.preloadImages = function()
{
	for(var i = 0; i<arguments.length; i++)
	{
		jQuery("<img/>").attr("src", arguments[i]);
	}
}

$(document).ready(function (){
	$("#pikame").PikaChoose({
		show_captions: false,
		thumb_width: 154,
		thumb_height: 121,
		slide_speed: 2500,
		show_prev_next: false,
		buttons_text: { play: '<img src="images/play.png" alt="play" title="play" />', stop: '<img src="images/pause.png" alt="pause" title="pause" />'}
	});
	$("ul#pikame li:first").css("margin-left", 0);
	$("ul#pikame li:last").css("margin-right", 0);
	
	$('#navigation a img, #open_house img').hover(function() {
		src = $(this).attr('src');
		$(this).attr({'src' : src.substr(0, src.lastIndexOf('.')) + '_over.jpg'});
	},
	function() {
		src = $(this).attr('src');
		$(this).attr({'src' : src.substr(0, src.lastIndexOf('_')) + '.jpg'});
	})

	$.preloadImages('images/nav_home_over.jpg', 'images/nav_siteplan_over.jpg', 'images/nav_floorplans_over.jpg', 'images/nav_builder_over.jpg', 'images/open_house_over.jpg');

	$('#siteplan a.gallery_1').lightBox({containerResizeSpeed: 350});
	$('#siteplan a.gallery_2').lightBox({containerResizeSpeed: 350});
	$('#siteplan a.gallery_3').lightBox({containerResizeSpeed: 350});
	$('#siteplan a.gallery_4').lightBox({containerResizeSpeed: 350});

});