// menu_items.js file
/* syntax:  
var MENU_ITEMS =[
		    ["item1", null(IF NOT LINKING YOU MUST USE "NULL")|"item1Link.html"],
		    ["item2", null|"item2Link.html"],
	    	    ["item3", null|"item3Link.html",
	    		["subItem3_1", null|"subItem3_1Link.html"],
	    		["subItem3_2", null|"subItem3_2Link.html"]
	     	    ["item4", null|"item4Link.html"]
	     	];
	     	
This example should end up looking like this:
	|  item1  |  item2  |  item3  |  item4  |
				|  subItem3_1  |
				|  subItem3_2  |
				
You can have as many levels within levels as you wish, but it's not very user-friendly if you have too many!
												--Thiago.
*/
var MENU_ITEMS =[
	["<IMG SRC=images/menu_twoway.gif BORDER=0>", "#",
		['800 MHz Trunking', 'pr800_trunking.php'],
		['460 MHz Trunking', 'pr460_trunking.php'],
		['460 Conventional', 'pr460_conventional.php'],
		['On Site Conventional', 'pr000_onsite.php']
	],
	["<IMG SRC=images/menu_paging.gif BORDER=0>", "pagers.php"],	
	["<IMG SRC=images/menu_about.gif BORDER=0>", "products.php"],
	["<IMG SRC=images/menu_contact.gif BORDER=0>", "contact.php"],
	["<IMG SRC=images/menu_why2way.gif BORDER=0>", "why2way.php",],
	["<IMG SRC=images/menu_page.gif BORDER=0>", "sendapage.php"]
];

