
// fired at the end of the page once all html has loaded
function onDOMload () {
	if(typeof sIFR == "function"){
		switchFonts();
	};

};

// fired once all content has loaded
function onPageLoad () {
	
};

function insert_testimonials_flash(page) {

	var height = 132;
	var width = 735;
	

	var f1 = new FlashObject("/_assets/flash/testimonials.swf", "testimonials_flash", width, height, "7.0.0", '#ffffff');

	f1.addParam("quality", "high");
	f1.addParam("wmode", "transaprent");
	f1.addParam("FlashVars", "page=" + page);
	
	f1.write("testimonials");
}	

document.onload = onPageLoad();