	if(PBS_FlashCanPlay(8)) {
    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="804" height="482"'
    + 'id="home" align="middle"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0">'
    + '<param name="movie" value="media/home.swf" />'
    + '<param name="quality" value="high" />'
    + '<param name="bgcolor" value="#C3C3C1" />'
    + '<param name="allowScriptAccess" value="sameDomain" />'
	+ '<param name="allowFullScreen" value="false" />'
    + '<embed src="media/home.swf" '
    + 'width="804" height="482" '
    + 'quality="high" '
    + 'bgcolor="#C3C3C1" '
	+ 'name="home" '
	+ 'align="middle" '
	+ 'allowScriptAccess="sameDomain" '
	+ 'allowFullScreen = "false" '
    + '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
    // NOTE: height, width are required!
    var alternateContent = '<img src="homeimages/slideshow_noflash.jpg" alt="" width="804" height="482" usemap="#slideshow" />'
    	+ '<map name="slideshow" id="slideshow">'
    	+ '<area shape="rect" coords="466,450,599,482" href="contemporary/index.html" alt="Contemporary" />'
    	+ '<area shape="rect" coords="334,450,467,482" href="mystery/index.html" alt="Mystery!" />'
    	+ '<area shape="rect" coords="202,450,335,482" href="classic/index.html" alt="Classic" />'
    	+ '</map>';

    document.write(alternateContent);  // insert non-flash content
  }
