/**************************************
Date: 7/16/2001
Author: Matt Mckeon
Company: Rapp Advertising

Here we are going to set up the page forks for the DHTML elements of this page. Since we
want to support as many browsers as posible, their will be three forks. 
One that supports the W3 standard, which will include IE 5.5, Netscape 6.0, 
Mozilla Browsers and Opera ( and hopefully any new browser that comes out as long as it supports w3 implementation of the DOM) 
***************************************/
	if(document.getElementById && !document.all)
	{
	// W3 standard Code
	 document.write("<scri" + "pt language='javascript' type='text/javascript' src='" + prefix + "code/W3_menus.js'><\/scr" + "ipt>")
	
	}else if(document.layers)
	{
	// Netscape 4.x code
	 document.write("<scri" + "pt language=javascript src=" + prefix + "code/NN_menus.js><\/scr" + "ipt>")
	}
	else if(document.all) 
	{
	// IE 4 code
	 document.write("<scri" + "pt language=javascript src=" + prefix + "code/IE_menus.js><\/scr" + "ipt>")
	}
