// JavaScript Header
			btnsPath = '../graphics/buttons/header/'
			btns = new Array;
			for (var i = 0; i < 16; i++){
        		btns[i] = new Image();
    		};

			btns[0]  = btnsPath + 'btn_literature_up.gif';
			btns[1]  = btnsPath + 'btn_literature_ov.gif';
			btns[2]  = btnsPath + 'btn_literature_dn.gif';
			btns[3]  = btnsPath + 'btn_literature_sl.gif';
			btns[4]  = btnsPath + 'btn_contact_up.gif';
			btns[5]  = btnsPath + 'btn_contact_ov.gif';
			btns[6]  = btnsPath + 'btn_contact_dn.gif';
			btns[7]  = btnsPath + 'btn_contact_sl.gif';
			btns[8]  = btnsPath + 'btn_buy_up.gif';
			btns[9]  = btnsPath + 'btn_buy_ov.gif';
			btns[10] = btnsPath + 'btn_buy_dn.gif';
			btns[11] = btnsPath + 'btn_buy_sl.gif';
			btns[12] = btnsPath + 'btn_motorsports_up.gif';
			btns[13] = btnsPath + 'btn_motorsports_ov.gif';
			btns[14] = btnsPath + 'btn_motorsports_dn.gif';
			btns[15] = btnsPath + 'btn_motorsports_sl.gif';
			//btns[16] = btnsPath + 'btn_wetv_up.gif';
			//btns[17] = btnsPath + 'btn_wetv_ov.gif';
			//btns[18] = btnsPath + 'btn_wetv_dn.gif';
			//btns[19] = btnsPath + 'btn_wetv_sl.gif';
		
		function swap(btn, id) {
			swapImage(btns[btn], id)	// Located in graphics.js library
		}

		function dropdownMenu(x) {
			if(x != 'literatureMenu') {HideDiv('literatureMenu')}
			if(x != 'contactMenu') {HideDiv('contactMenu')}
			if(x != 'buyMenu') {HideDiv('buyMenu')}
			if (document.getElementById(x).style.display == 'none' || document.getElementById(x).style.display == '') {
				document.getElementById(x).style.display = 'inline';
			} else {
				document.getElementById(x).style.display = 'none';
			}
		}
