/* cycle added by russ */

$('#home_photos').cycle({ 
    fx:     'fade', 
    speed:  2000, 
    timeout: 5000
});

function destroyThemAll() {
	document.getElementById("home_community1").style.display = "none";
	document.getElementById("home_community2").style.display = "none";
	document.getElementById("home_community3").style.display = "none";
	$("#home_piece_comm1").css("background", "url(http://www.seacountryhomes.com/images/home-button1.png)");
	$("#home_piece_comm2").css("background", "url(http://www.seacountryhomes.com/images/home-button2.png)");
	$("#home_piece_comm3").css("background", "url(http://www.seacountryhomes.com/images/home-button3.png)");
	$("#home_piece_comm1_link").css("color", "#FFFFFF");
	$("#home_piece_comm2_link").css("color", "#FFFFFF");
	$("#home_piece_comm3_link").css("color", "#FFFFFF");
	//$("#subNavOne").fadeOut(1000);
}

function showOne() {
	destroyThemAll();
	document.getElementById("home_community1").style.display = "block";
	$("#home_piece_comm1").css("background", "url(http://www.seacountryhomes.com/images/home-button1-over.png)");
	$("#home_piece_comm1_link").css("color", "#455560");
}

function showTwo() {
	destroyThemAll();
	document.getElementById("home_community2").style.display = "block";
	$("#home_piece_comm2").css("background", "url(http://www.seacountryhomes.com/images/home-button2-over.png)");
	$("#home_piece_comm2_link").css("color", "#455560");
}

function showThree() {
	destroyThemAll();
	document.getElementById("home_community3").style.display = "block";
	$("#home_piece_comm3").css("background", "url(http://www.seacountryhomes.com/images/home-button3-over.png)");
	$("#home_piece_comm3_link").css("color", "#455560");
}

