// Hide these elements until the flash is loaded.
document.write('<style type="text/css" media="screen">');
document.write('#chairman blockquote {visibility: hidden;}');
document.write('</style>');


function doQuoteReplace(){

	var b = document.getElementById("chairman").getElementsByTagName("blockquote")[0];
	

	var w = 238;
	var h = 150;
	
	//var image = b.getElementsByTagName("img")[0];

	//if(image == undefined || image.longDesc.toString().length == 0)return;

	var slideURL = "/flashdata/quotes.html";	
	writeFlash(b, "slide_show/slide_show_small_loader_v2.swf", w, h,  "movieUrl=" + encodeURIComponent(flashPath + "slide_show/slide_show_v3.swf") + "&slideUrl=" + encodeURIComponent(slideURL));
	
	if(MM_FlashCanPlay){
		 b.style.background = "none";
		 b.style.padding = 0;
	}
}

EventUtils.addEventListener(window,'load',doQuoteReplace);