// Menu
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="204" height="415"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="menu.swf?u=4" /><param name="menu" value="false" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ffffff" />'
    + '<embed src="menu.swf?u=4" menu="false" quality="high" wmode="transparent" bgcolor="#ffffff" '
    + 'width="204" height="415" name="menu" align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = '<img src="images/menu.jpg" alt="" width="204" height="415" border="0" usemap="#Map" /><map name="Map" id="map">'
	+ '<area shape="rect" coords="18,31,146,58" href="index.html" alt="Home Page">'
	+ '<area shape="rect" coords="19,68,120,91" href="services.html" alt="About Us">'
	+ '<area shape="rect" coords="20,104,162,125" href="casestudies.html" alt="Services">'
	+ '<area shape="rect" coords="20,141,171,162" href="financialinfo.html" alt="Case Studies">'
	+ '<area shape="rect" coords="19,176,161,229" href="tailormade.html" alt="Testimonials">'
	+ '<area shape="rect" coords="20,239,168,288" href="nonmedical.html" alt="Financial Info.">'
	+ '<area shape="rect" coords="17,336,140,363" href="contact.php" alt="Contact Us">'
	+ '<area shape="rect" coords="17,298,161,325" href="conferences.html" alt="Conferences" />'
	+ '</map>';
    document.write(alternateContent);  // insert non-flash content
 }