// JavaScript Document
<!--
/*
function detectBrowser()
{
	// set global boolean variables
	this.ie  = (document.all) ? 1 : 0;
	this.ns4 = (document.layers) ? 1 : 0;
	this.dom = (document.getElementById) ? 1 : 0;	
	this.safari = (navigator.userAgent.indexOf("Safari") != -1) ? 1 : 0;
}

!! detectBrowser has already been called.

   example:
   if (!this.safari) document.write('<div id="centerpiece">\n'+flashObjStr+'\n</div>');   
   else document.writeln('<div id="centerpiece">\n<img src="images/multimedia_img.jpg" />\n</div>');
*/

interactive_dev_output = '';
if (!this.safari)
{
	interactive_dev_output = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="818" height="499" id="web_landing_animation">\n';
	interactive_dev_output += '<param name="allowScriptAccess" value="sameDomain" />\n';
	interactive_dev_output += '<param name="movie" value="flash/main_page/web_landing_animation.swf" />\n';
	interactive_dev_output += '<param name="loop" value="true" />\n';
	interactive_dev_output += '<param name="menu" value="false" />\n';
	interactive_dev_output += '<param name="wmode" value="transparent" />\n';
	interactive_dev_output += '<param name="quality" value="best" />\n';
	interactive_dev_output += '<param name="bgcolor" value="#cccccc" />\n';
	interactive_dev_output += '<embed src="flash/main_page/web_landing_animation.swf" loop="true" menu="false" quality="best" bgcolor="#cccccc" width="818" height="499" name="web_ landing_animation" wmode="transparent" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n';
	interactive_dev_output += '</object>\n';
}
else
{
	interactive_dev_output = '<img src="images/interactive_dev_still.jpg" width="818" height="499"/>\n';
}

document.write(interactive_dev_output);
//-->