//all javascripts that are SITE SPECIFIC, and probably cannot be reused in other site, go in this file

//alert('site.js up');

function showCity(query){
	//alert('showCity');
	if(query==null){
		//if parameters are void, assume this call is coming from the dropdown list
		query=window.document.cityLocate.citySelect.options[window.document.cityLocate.citySelect.selectedIndex].value;
	}
	if(query!='none'){
		window.location='locate-your-city.php?'+query;
	}
}

function listCities(letter){
	//alert('listCities');
	//close all but the current city div
	allLetters=new Array('A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z');
	//allLetters=new Array('A','B');
	for(curLoc in allLetters){
		curLetter=allLetters[curLoc];
		divObj=findObjectPath("div_"+curLetter);
		if(curLetter==letter){
			//alert('found letter match');
			divObj.style.display='block';
		}else{
			if(divObj!=null && divObj.style.display!='none'){divObj.style.display='none';}
		}
	}
	fixIEBug();
}





