<!--
function goToPage(page) {
if (page == "index"){window.location.href="index.html";}
else if (page == "contact"){window.location.href="contact.html";}
else if (page == "about"){window.location.href="about.html";}
else if (page == "town_Criteria"){window.location.href="town_Criteria.html";}
else if (page == "school_Criteria"){window.location.href="school_Criteria.html";}
else if (page == "business_List"){window.location.href="business_List.html";}
else if (page == "photos"){window.location.href="photos.html";}
else if (page == "links"){window.location.href="links.html";}
else if (page == "ff"){window.location.href="ff.html";}
else if (page == "schools"){window.location.href="schools.html";}
else if (page == "listingsSandS"){window.location.href="listingsSandS.html";}
else if (page == "listingsRandC"){window.location.href="listingsRandC.html";}
else if (page == "listingsCandV"){window.location.href="listingsCandV.html";}
else if (page == "Wholesalers"){window.location.href="Wholesalers.html";}
}

function changeBoxColor(box){
if (box == "bannerDIV"){
	document.getElementById('criteria').style.background = '#99CC00';
	document.getElementById('criteriaBox').style.visibility = 'hidden';
	document.getElementById('businessBox').style.visibility = 'hidden';}
else if (box == "index"){document.getElementById('index').style.background = '#333333';}
else if (box == "contact"){document.getElementById('contact').style.background = '#333333';}
else if (box == "about"){
	document.getElementById('about').style.background = '#333333';
	document.getElementById('criteria').style.background = '#99CC00';
	document.getElementById('criteriaBox').style.visibility = 'hidden';}
else if (box == "criteria")
	{document.getElementById('criteria').style.background = '#333333';
	 document.getElementById('criteriaBox').style.visibility = 'visible';
	 document.getElementById('businessBox').style.visibility = 'hidden';
}
else if (box == "business_List"){
	document.getElementById('business_List').style.background = '#333333';
	document.getElementById('criteria').style.background = '#99CC00';
	document.getElementById('criteriaBox').style.visibility = 'hidden';
	document.getElementById('businessBox').style.visibility = 'visible';
	}
else if (box == "photos"){
	document.getElementById('photos').style.background = '#333333';
	document.getElementById('businessBox').style.visibility = 'hidden';
	}
else if (box == "links"){document.getElementById('links').style.background = '#333333';}


if (box == "indexOut"){document.getElementById('index').style.background = '#99CC00';}
else if (box == "contactOut"){document.getElementById('contact').style.background = '#99CC00';}
else if (box == "aboutOut"){document.getElementById('about').style.background = '#99CC00';}
else if (box == "criteriaOut"){

	}
else if (box == "business_ListOut"){document.getElementById('business_List').style.background = '#99CC00';}
else if (box == "photosOut"){document.getElementById('photos').style.background = '#99CC00';}
else if (box == "linksOut"){document.getElementById('links').style.background = '#99CC00';}
}



function showBox(){
document.getElementById('criteriaBox').style.visibility = 'visible';
}
function hideBox(){
document.getElementById('criteria').style.background = '#99CC00';
document.getElementById('criteriaBox').style.visibility = 'hidden';
}

function showBox2(){
document.getElementById('businessBox').style.visibility = 'visible';
}
function hideBox2(){
document.getElementById('business_List').style.background = '#99CC00';
document.getElementById('businessBox').style.visibility = 'hidden';
}


//-->
