	/* 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);
		


		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 = '#365091';
	navRollOverColour = '#172A5A';
//	absURL = "http://www.dawninstallations.com/images/nav/";
//	absURL = "";
	absURLlink = "http://www.dawninstallations.com/";
	//absURLlink = "";
	
	bC = null;
	startMenuBar(966, 7);
	menuLabel('HOME', 1, null, navRollOverColour, navColour, absURLlink+'index.html', 'left');
	addDivider('&nbsp;', null, '#182A5A');
	menuLabel('SERVICES', 2, null, navRollOverColour, navColour, absURLlink+'services/services.html', 'left');
	addDivider('&nbsp;', null, '#182A5A');
	menuLabel('WHY CHOOSE DAWN INSTALLATIONS', 3, 260, navRollOverColour, navColour, absURLlink+'why_choose_di.html', 'left');
	addDivider('&nbsp;', null, '#182A5A');
	menuLabel('EMPLOYMENT', 4, null, navRollOverColour, navColour, absURLlink+'employment.html', 'left');
	addDivider('&nbsp;', null, '#182A5A');
	menuLabel('FINANCIAL BACKING', 5, null, navRollOverColour, navColour, absURLlink+'financial_backing.html', 'left');
	addDivider('&nbsp;', null, '#182A5A');
	menuLabel('PROJECTS', 6, null, navRollOverColour, navColour, absURLlink+'projects/projects.html', 'left');
	addDivider('&nbsp;', null, '#182A5A');
	menuLabel('CONTACT US', 7, null, navRollOverColour, navColour, absURLlink+'contact_us.html', 'left');
	endMenuBar(7);

