// Make calls to other operations from this file. 

function validatequicksearch(f){

	if (f.town.value == ''){
		alert('Please enter a city and click search');
		return false;
	}	
	return true;
}



// fired at the end of the page once all html has loaded
function onDOMload () {
	if(typeof sIFR == "function"){
		switchFonts();
	};
	if(typeof buildTransitions == "function") {
		buildTransitions();
	};
};

// fired once all content has loaded
function onPageLoad () {
	
};



document.onload = onPageLoad();