if (TransMenu.isSupported()) {

	var ms = new TransMenuSet(TransMenu.direction.down, 0, 0, TransMenu.reference.bottomLeft);
var menu2 = ms.addMenu(document.getElementById("menu2"));
 menu2.addItem("Press Releases", "/showcontent.asp?menuid=press", "0");
menu2.addItem("Our Network", "/showcontent.asp?menuid=network", "0");
menu2.addItem("Job Postings", "/showcontent.asp?menuid=jobs", "0");
var menu5 = ms.addMenu(document.getElementById("menu5"));
 menu5.addItem("Rate Card", "/showcontent.asp?menuid=rates", "0");
menu5.addItem("Creative Samples", "/showcontent.asp?menuid=samples", "0");
menu5.addItem("Target Zones", "/showcontent.asp?menuid=zones", "0");

	function init() {
		if (TransMenu.isSupported()) {
			TransMenu.initialize();
			document.getElementById("menu1").onmouseover = function() {
ms.hideCurrent();
this.className = "hover";
}
document.getElementById("menu1").onmouseout = function() { this.className = ""; }
menu2.onactivate = function() {document.getElementById("menu2").className = "hover"; };
 menu2.ondeactivate = function() {document.getElementById("menu2").className = ""; };
 menu5.onactivate = function() {document.getElementById("menu5").className = "hover"; };
 menu5.ondeactivate = function() {document.getElementById("menu5").className = ""; };
 
		}}

		TransMenu.spacerGif = "/images/x.gif";                     // path to a transparent spacer gif
		TransMenu.dingbatOn = "/images/submenu-on.gif";            // path to the active sub menu dingbat
		TransMenu.dingbatOff = "/images/submenu-off.gif";
		TransMenu.sub_indicator = true;

		TransMenu.menuPadding = 0;                             // padding between menu border and items grid
		TransMenu.itemPadding = 0;                             // additional padding around each item
		TransMenu.shadowSize = 2;                              // size of shadow under menu
		TransMenu.shadowOffset = 3;                            // distance shadow should be offset from leading edge
		TransMenu.shadowColor = "#888";                        // color of shadow (transparency is set in CSS)
		TransMenu.shadowPng = "/images/grey-40.png";               // a PNG graphic to serve as the shadow for mac IE5
		TransMenu.backgroundColor = "#2e2e2e";                   // color of the background (transparency set in CSS)
		TransMenu.backgroundPng = "/images/white-90.png";          // a PNG graphic to server as the background for mac IE5
		TransMenu.hideDelay = 400;                            // number of milliseconds to wait before hiding a menu
		TransMenu.slideTime = 200;


		TransMenu.renderAll();



		if ( typeof window.addEventListener != "undefined" )
		window.addEventListener( "load", init, false );

		// IE
		else if ( typeof window.attachEvent != "undefined" ) {
			window.attachEvent( "onload", init );
			//window.attachEvent( "onunload", disposeAllTabs );
		}

		else {
			if ( window.onload != null ) {
				var oldOnload = window.onload;
				window.onload = function ( e ) {
					oldOnload( e );
					init();
				}
			}
			else
			window.onload = init();
		}

}
