	/* usage
		bC = null; this means no border colour you can set it to a hex value if you wish
		startMenuBar(width, numberMenuItems);
		menuLabel('Text to appear as main navigation item', menuNumber, width, 'rollOver Colour in hex', 'rollOut/BG Colour in hex', 'linktofile.ext', 'alignment{left,center,right}');
		addDivider('html or text spacer', width, BG Colour in hex);
		endMenuBar(numberMenuItems);
		
		addDivider('&nbsp;', null, '#182A5A');

		for images use this code:
		Img_menuLabel(menuNumber, 'images/nav_image.gif', 'images/nav_imageOver.gif', 'linktofile.ext', 'left');
		
		background-color: #182A5A;         */
//		Light blue: #1E3C82; 

	navColour = main_color;
	navRollOverColour = roll_color;
	absURL = "";
	absURLlink = "";
	
	bC = null;
	startMenuBar(770, 5);
	menuLabel('GUESTROOM AMENITIES', 5, null, navRollOverColour, navColour, absURLlink+'?q=node/119', 'left');
	menuLabel('SPA &AMP; RETAIL', 4, null, navRollOverColour, navColour, absURLlink+'?q=node/80', 'left');
	menuLabel('AIRLINE AMENITIES', 3, null, navRollOverColour, navColour, absURLlink+'?q=node/68', 'left');
	menuLabel('ENVIRONMENTAL PRODUCTS', 2, null, navRollOverColour, navColour, absURLlink+'?q=node/61', 'left');
	menuLabel('ABOUT JRS', 1, null, navRollOverColour, navColour, absURLlink+'?q=node/53', 'right');
	endMenuBar(5);

