/**************************************************************************************
** Directions to eliminate the "fuzzy box" for all html's displaying the menu and header:

** 1. Add the following 2 lines just before the </head> tag:

<script type="text/javascript" src="scripts/swfobject.js"></script>
<script type="text/javascript" src="scripts/doload_function.js"></script>

** 2. Then within the <body> tag, add:

onload="javascript:doLoad()" 

** 3. Between the <td> and <object> tags for the section with menu.swf, add:

<div id="menuDiv">

** 4. Between the corresponding </td> and </object> tags, add:

</div>

** 5. Between the <td> and <object> tags for the section with header.swf, add:

<div id="headerDiv">

** 6. Between the corresponding </td> and </object> tags, add:

</div>

**************************************************************************************/

var foMenu;
var foHead;

function doFlashLoad(){
	// <![CDATA[
//	foHead = new SWFObject("Flash/header.swf", "header", "520", "200", 6, "#FFFFFF");
//	foHead.write("headerDiv");
		
	foMenu = new SWFObject("Flash/menu.swf", "menu", "171", "206", 6, "#FFFFFF");
	foMenu.write("menuDiv");
	
	// ]]>
}

