window.onload = function () {
	if( arguments.callee.actions){
		for(var ii=0;ii < arguments.callee.actions.length;ii++){
			if(typeof arguments.callee.actions[ii] === "function"){
				arguments.callee.actions[ii]();
			}		
		}
	}
};

function addLoadEvent(func){
	if(window.onload.actions === undefined)window.onload.actions = Array();
	window.onload.actions.push(func);
}

function initsIFR(){
	if(typeof sIFR == "function"){	
		sIFR.replaceElement(
			named({
				sSelector: "h1",
				sFlashSrc: "www/swf/Interstate-Black.swf",
				sColor: "#000000",
				sWmode: "transparent",
				sCase: "upper",
				sFlashVars: "textalign=center"
			})
		);	
		sIFR.replaceElement(
			named({
				sSelector: "h2",
				sFlashSrc: "www/swf/Interstate-Bold.swf",
				sColor: "#000000",
				sWmode: "transparent",
				sCase: "upper"
			})
		);	
		sIFR.replaceElement(
			named({
				sSelector: "h3",
				sFlashSrc: "www/swf/Interstate-Bold.swf",
				sColor: "#996633",
				sWmode: "transparent",
				sCase: "upper"
			})
		);			
	}
}	 

if (typeof addLoadEvent == 'function'){
	addLoadEvent(function(){
		initsIFR();
	});
}