// 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 () {
	
};


function mro(obj, dir, hot) {
	if (hot == 1) {
		obj.src = '/_images/' + dir + '/' + obj.id + '_h.png';
	} else {
		obj.src = '/_images/' + dir + '/' + obj.id + '.png';
	}
}



document.onload = onPageLoad();