// JavaScript Document
function changeTab(id){
	document.getElementById("home_tab_left").style.backgroundImage = "url(http://www.athomeinutah.net/images/un_tab_left.jpg)";
	document.getElementById("home_tab_center").style.backgroundImage = "url(http://www.athomeinutah.net/images/un_tab_center.jpg)";
	document.getElementById("home_tab_right").style.backgroundImage = "url(http://www.athomeinutah.net/images/un_tab_right.jpg)";
	
	document.getElementById("new_tab_left").style.backgroundImage = "url(http://www.athomeinutah.net/images/un_tab_left.jpg)";
	document.getElementById("new_tab_center").style.backgroundImage = "url(http://www.athomeinutah.net/images/un_tab_center.jpg)";
	document.getElementById("new_tab_right").style.backgroundImage = "url(http://www.athomeinutah.net/images/un_tab_right.jpg)";
	
	document.getElementById("lend_tab_left").style.backgroundImage = "url(http://www.athomeinutah.net/images/un_tab_left.jpg)";
	document.getElementById("lend_tab_center").style.backgroundImage = "url(http://www.athomeinutah.net/images/un_tab_center.jpg)";
	document.getElementById("lend_tab_right").style.backgroundImage = "url(http://www.athomeinutah.net/images/un_tab_right.jpg)";
	
	document.getElementById("comm_tab_left").style.backgroundImage = "url(http://www.athomeinutah.net/images/un_tab_left.jpg)";
	document.getElementById("comm_tab_center").style.backgroundImage = "url(http://www.athomeinutah.net/images/un_tab_center.jpg)";
	document.getElementById("comm_tab_right").style.backgroundImage = "url(http://www.athomeinutah.net/images/un_tab_right.jpg)";
	
	document.getElementById("class_tab_left").style.backgroundImage = "url(http://www.athomeinutah.net/images/un_tab_left.jpg)";
	document.getElementById("class_tab_center").style.backgroundImage = "url(http://www.athomeinutah.net/images/un_tab_center.jpg)";
	document.getElementById("class_tab_right").style.backgroundImage = "url(http://www.athomeinutah.net/images/un_tab_right.jpg)";
	
	document.getElementById(id + "_tab_left").style.backgroundImage = "url(http://www.athomeinutah.net/images/sel_tab_left.jpg)";
	document.getElementById(id + "_tab_center").style.backgroundImage = "url(http://www.athomeinutah.net/images/sel_tab_center.jpg)";
	document.getElementById(id + "_tab_right").style.backgroundImage = "url(http://www.athomeinutah.net/images/sel_tab_right.jpg)";
	
if(id == "comm"){
	window.location = "http://www.cityfeet.com/SaltLakeCityCommercialRealEstate/";
} else if(id == "new"){
	window.location = "http://www.newhomesource.com/saltlakecity/";
} else {
	window.location = "http://www.athomeinutah.net/index.php?con=" + id;
}
}
function expandSearch(){
	document.getElementById('mlsSearch').style.display = "block";
	document.getElementById('expandPrompt').style.display = "none";
	document.getElementById('retractPrompt').style.display = "block";
}
function retractSearch(){
	document.getElementById('mlsSearch').style.display = "none";
	document.getElementById('expandPrompt').style.display = "block";
	document.getElementById('retractPrompt').style.display = "none";
}
function cancelFSBOLogin(){
	alert("Working");	
}
function fsboMenu(element){
	//clear all backgrounds
	document.getElementById('mainMenu').style.backgroundColor = "#FFF4DE";
	document.getElementById('addMenu').style.backgroundColor = "#FFF4DE";
	document.getElementById('editMenu').style.backgroundColor = "#FFF4DE";
	
	//clear all links
	document.getElementById('mainLink').style.color = "#000033";
	document.getElementById('addLink').style.color = "#000033";
	document.getElementById('editLink').style.color = "#000033";
	
	//set Tab
	document.getElementById(element + "Menu").style.backgroundColor = "#000033";
	document.getElementById(element + "Link").style.color = "#FFFFFF";
	
	//redirect page
	window.location = "index.php?con=fsbo&act=" + element;
}
function fsboMenuInit(element){
	//clear all backgrounds
	document.getElementById('mainMenu').style.backgroundColor = "#FFF4DE";
	document.getElementById('addMenu').style.backgroundColor = "#FFF4DE";
	document.getElementById('editMenu').style.backgroundColor = "#FFF4DE";
	
	//clear all links
	document.getElementById('mainLink').style.color = "#000033";
	document.getElementById('addLink').style.color = "#000033";
	document.getElementById('editLink').style.color = "#000033";
	
	//set Tab
	document.getElementById(element + "Menu").style.backgroundColor = "#000033";
	document.getElementById(element + "Link").style.color = "#FFFFFF";
}