$(document).ready(function(){
	/********************************************************/
	/******* GALLERY ****************************************/
	/********************************************************/
	var gallery_total = 0;
	var curr_gallery_item = 0;
	$("#gallery li").each(function(){gallery_total++;});
	if(gallery_total > 0){curr_gallery_item = 1;}
	
	$("#gallery_nav .next a").click(function(){
		if(curr_gallery_item == gallery_total)
		{
			curr_gallery_item = 1;
		}
		else
		{
			curr_gallery_item++;
		}
		$("#gallery li").fadeOut("fast");
		$("#gallery li").eq(curr_gallery_item-1).fadeIn("fast");
		return false;
	});
	$("#gallery_nav .prev a").click(function(){
		if(curr_gallery_item == 1)
		{
			curr_gallery_item = gallery_total;
		}
		else
		{
			curr_gallery_item--;
		}
		$("#gallery li").fadeOut("fast");
		$("#gallery li").eq(curr_gallery_item-1).fadeIn("fast");
		return false;
	});
	/********************************************************/
	/******* END GALLERY ************************************/
	/********************************************************/
	
	
	/********************************************************/
	/******* FLOOR PLANS ************************************/
	/********************************************************/
	
	$("#floor_plan_table tr").mouseenter(function(){
		var thePlan = $(this).attr("class");
		$("#floor_plan_table tr td").removeClass("active");
		$("td", this).addClass("active");
		if(thePlan)
		{
			$("#floor_plans li").stop(true,true).fadeOut("fast");
			$("#floor_plans li."+ thePlan).stop(true,true).fadeIn("fast");
		}
	});
	
	
	/********************************************************/
	/******* END FLOOR PLANS ********************************/
	/********************************************************/
	
	/********************************************************/
	/******* FACES OF 909 ***********************************/
	/********************************************************/
	
	$("#featured_video_list a").click(function(){
		var theVid = $(this).parent().attr("class");
		$("#right_col").html('<div id="swfContent"></div>');
		
		if(theVid)
		{
			var flashvars = {vidSrc:'faces_vids/'+theVid+'.flv'};
			var params = {allowfullscreen:'true'};
			var attributes = {id:"VideoBase"};
        	swfobject.embedSWF("flash/vidPlayer.swf", "swfContent", "370", "235", "10.0.0", "js/expressInstall.swf", flashvars, params, attributes);
		}
		return false;
	});
	
	/********************************************************/
	/******* END FACES OF 909 *******************************/
	/********************************************************/
});
