// this script swaps the static png version of the header logo
// for the animated flash version.  
//
// it should only be used on the homepage
//
// embedding the control from an external javascript file
// gets around the 'Click to Activate' EOLAS patent issue in IE
//
var logo = document.getElementById('logo');
if (logo) {
	logo.innerHTML = 
		'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="flash-logo" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0" width="745" height="110">' + 
		'	<param name=movie value="/images/prog_header1.swf">' + 
		'	<param name=quality value=high>' + 
		'	<embed src="/images/prog_header1.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="745" height="110"></embed>' +
		'</object>';
}