
/* Navigation.js */

//------------------------------------------------------------------------------------
// function: embedNav
//           Fuction to imbed flash navigation.  This will get around the new security 
//           changes in the up to IE Browsers.
//----

function embedNav()
{
   document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="759" height="20" vspace="0" hspace="0" align="absmiddle">\n');
   document.write('<param name=movie value="swf/bee_menu.swf">\n');
   document.write('<param name=quality value=high>\n');
   document.write('<param name="SCALE" value="exactfit">\n');
   document.write('<param name="LOOP" value="false">\n');
   document.write('<PARAM NAME=menu VALUE="false">\n');
   document.write('<PARAM NAME=wmode VALUE="Window"><param name="BGCOLOR" value="#DE0000">\n');
   document.write('<embed src="swf/bee_menu.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="759" height="20" scale="exactfit" loop="false" vspace="0" hspace="0" align="absmiddle" bgcolor="#DE0000">\n');
   document.write('</embed> \n');
   document.write('</object>\n');
}
