			var isMinNS4=(navigator.appName.indexOf("Netscape")>=0&&parseFloat(navigator.appVersion)>=4)?1:0;
			var isMinIE4=(document.all)?1:0;
			
			function onLoad() {
				loadMenus();
			}
				
			function loadMenus() {
				// Here you can define the items of pull-down menu #1. Assign the text and link of item. 
				//Parameters for menu #1
				window.myMenu1 = new Menu();
				myMenu1.addMenuItem("Smart hire", "location='smarthire.html'");
				myMenu1.addMenuItem("Time control", "location='timecontrol.html'");
				myMenu1.addMenuItem("Simple pay", "location='simplepay.html'");				
				myMenu1.addMenuItem("Tax management", "location='tax.html'");
				myMenu1.addMenuItem("E-pay", "location='epay.html'");
				myMenu1.addMenuItem("Medical plans", "location='medical.html'");
				myMenu1.addMenuItem("COBRA AND HIPAA", "location='cobrahippa.html'");
				myMenu1.addMenuItem("Retirement benefits", "location='retirement.html'");
				myMenu1.disableDrag	= 1;
				
				//Here you can assign the appearance of pull-down menu item text and pull-down menuitself:
				//Color of menu background, color of menu item background, font color, font size,
				//color of highlighten text, background color of highlighted menu item, width of pull-down menu
				//Parameters for menu #1
				myMenu1.bgColor             = "#E4D9DE";
				myMenu1.menuItemBgColor     = "#E4D9DE";
				myMenu1.fontColor           = "#BB8385";
				myMenu1.fontColorHilite     = "#8A2224";
				myMenu1.menuHiliteBgColor   = "#BDB1BE";
				myMenu1.menuItemWidth       = 155;

				myMenu1.enableTracker = false;
				myMenu1.writeMenus();



			}
			
			function M1()	{
				var date = new Date();
				if ((date.getTime() - last_time) > wait_time)
					hideMenu(null);
			}
