function hideAllCom() {

    hideObject('suffolkList');
    hideObject('richmondList');
    hideObject('floridaList');

}

function showComList(com) {
    
    hideAllCom();
    
    var show = com + "List";
    showObject(show);   

    switchPic(com); 
}

function switchPic(loc) {

    if (loc=="florida") {
        document.getElementById("titleImage").src = "images/titleimage/t_homesearch_02.jpg";
        document.getElementById("homeSearchImage").src = "images/homesearch/fl_an_homesearch.gif";
    } else if (loc=="suffolk") {
        document.getElementById("titleImage").src = "images/titleimage/t_homesearch_01.jpg";
        document.getElementById("homeSearchImage").src = "images/homesearch/rf_homesearch.gif";
    }
    else {
        document.getElementById("titleImage").src = "images/titleimage/t_homesearch_01.jpg";
        document.getElementById("homeSearchImage").src = "images/homesearch/an_home_01.gif";
    }

}

function showPicture(url)
{
  window.open(url,'_new',"width=660,height=500");
  
}
function hideAll() {

	document.getElementById("richmond_com").style.visibility = "hidden";
	document.getElementById("richmond_com").style.position = "absolute";
	document.getElementById("vabeach_com").style.visibility = "hidden";
	document.getElementById("vabeach_com").style.position = "absolute";
	document.getElementById("florida_com").style.visibility = "hidden";
	document.getElementById("florida_com").style.position = "absolute";
	document.getElementById("richmond_prop").style.visibility = "hidden";
	document.getElementById("richmond_prop").style.position = "absolute";
	document.getElementById("vabeach_prop").style.visibility = "hidden";
	document.getElementById("vabeach_prop").style.position = "absolute";
	document.getElementById("florida_prop").style.visibility = "hidden";
	document.getElementById("florida_prop").style.position = "absolute";

}
function locationList(com) {

	hideAll();

	if (com == "FLORIDA") {

		document.getElementById("florida_com").style.visibility = "visible";
		document.getElementById("florida_com").style.position = "static";
		document.getElementById("florida_prop").style.visibility = "visible";
		document.getElementById("florida_prop").style.position = "static";
		
	} else if (com == "VABEACH") {

		document.getElementById("vabeach_com").style.visibility = "visible";
		document.getElementById("vabeach_com").style.position = "static";
		document.getElementById("vabeach_prop").style.visibility = "visible";
		document.getElementById("vabeach_prop").style.position = "static";

	} else {

		document.getElementById("richmond_com").style.visibility = "visible";
		document.getElementById("richmond_com").style.position = "static";
		document.getElementById("richmond_prop").style.visibility = "visible";
		document.getElementById("richmond_prop").style.position = "static";

	}

}
function hidePrice() {

	document.getElementById("default_price").style.visibility = "hidden";
	document.getElementById("default_price").style.position = "absolute";
	document.getElementById("windsong_price").style.visibility = "hidden";
	document.getElementById("windsong_price").style.position = "absolute";


}
function comList(com) {

	hidePrice();

	if (com == "FLORIDA") {

		document.getElementById("windsong_price").style.visibility = "visible";
		document.getElementById("windsong_price").style.position = "static";
		document.getElementById("searchbanner").src = "<?echo $imagesource;?>t_homesearch_02.jpg";
		document.getElementById("searchgif").src = "<?echo $imagesource;?>fl_an_homesearch.gif";
		//document.getElementById("sellhome").src = "<?echo $imagesource;?>si_spacer_1.gif";
		document.getElementById("sellhome").style.visibility="hidden";
		document.getElementById("sellhome").style.position="absolute";

	
	} else {

		document.getElementById("default_price").style.visibility = "visible";
		document.getElementById("default_price").style.position = "static";
		document.getElementById("searchbanner").src = "<?echo $imagesource;?>t_homesearch_01.jpg";
		document.getElementById("searchgif").src = "<?echo $imagesource;?>an_home_01.gif";
		//document.getElementById("sellhome").src = "<?echo $imagesource;?>si_let_us_1.gif";
		document.getElementById("sellhome").style.visibility="visible";
		document.getElementById("sellhome").style.position="static";

	}
}
function load_location(com) {

	locationList(com);
	comList(com);

	if (com == "FLORIDA") {

		document.homesearch.property_type[8].checked = true;
		document.homesearch.community[10].checked = true;
		
	} else if (com == "VABEACH") {

		document.homesearch.property_type[4].checked = true;
		document.homesearch.community[6].checked = true;

	} else {

		document.homesearch.property_type[0].checked = true;
		document.homesearch.community[0].checked = true;

	}

}
function load_page() {
	
	locationList('<? echo $base_community;?>');
	comList('<?echo $base_community;?>');

}

