// Make calls to other operations from this file. 


// 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 () {
	s = 0;
	d = 0;
};

function clearSearch(element) {
	if (!s) {
		element.value = '';
		s = 1;
	}
}

function clearDate(element) {
	if (!d) {
		element.value = '';
		d = 1;
	}
}


document.onload = onPageLoad();