/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/


function newWin(myPage){
	if (myPage==1) {
		window.open('http://webmail.moltenmosaic.com/imp/login.php');
	} else if (myPage==2) {
		window.open('http://www.experts-exchange.com');
	} else if (myPage==3) {
		window.open('http://www.godaddy.com/');
	} else if (myPage==4) {
		window.open('http://www.tigerdirect.com/');
	} else if (myPage==5) {
		window.open('http://www.w3schools.com/');
	} else {
	}
}

var MENU_ITEMS = [
	['', '', null, null],
	['Home', '/index.cfm', null, null],
	['E-Mail', 'javascript:newWin(1);', null, null],
	['Programs', null, null,
		['Address Book', '/AddressBook.cfm'],
		['Recipe Prog', '/RecipeProg.cfm'],
		['Eve', '/Eve.cfm'],
		['WoW', '/WoW.cfm']
		
	],
	['Resources', null, null,
		['Experts Exchange', 'javascript:newWin(2);'],
		['Go Daddy', 'javascript:newWin(3);'],
		['Tiger Direct', 'javascript:newWin(4);'],
		['W3 Schools', 'javascript:newWin(5);'],
	],
	['About Me', '/AboutMe.cfm', null, null],
];



