// Begin

// NOTE: If you use a ' add a slash before it like this \'


var flashcolor		= "FFFFFF"		// FLASH BACKGROUND COLOR
var headerheight	= "50"			// HEADER height (IN PIXELS)

// anylinkmenu.init("menu_anchors_class") //Pass in the CSS class of anchor links (that contain a sub menu) -->
submenu.init("menuanchorclass");


// START MENU
var menuside = "center";	// MENU SIDE | left | right | center

document.write('<table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="'+menuside+'"tr>');

document.write('<td width="20%" nowrap>');
if(page == "HM") {
	document.write("<a href='index.html' class='menuon'>HOME</a>");
} else {
document.write('<a href="index.html" class="menuon">HOME</a>');
}

document.write('</td><td width="20%" nowrap>');
if(page == "HR") {
	document.write("<a href='hradvance.html' class='menuon menuanchorclass' rel='submenu1'>HRADVANCE</a>");
} else {
	document.write('<a href="hradvance.html" class="menu menuanchorclass" rel="submenu1">HRADVANCE</a>');
}

document.write('</td><td width="20%" nowrap>');
if(page == "TW") {
	document.write("<a href='#' class='menuon menuanchorclass' rel='submenu2'>HR onDEMAND<a/>");
} else {
document.write('<a href="hrontap.html" class="menu menuanchorclass" rel="submenu2">HR onDEMAND</a>');
}

document.write('</td><td width="20%" nowrap>');
if(page == 'AU') {
	document.write("<a href='about.html' class='menuon menuanchorclass' rel='submenu3'>ABOUT US</a>");
} else {
	document.write('<a href="about.html" class="menu menuanchorclass" rel="submenu3">ABOUT US</a>');
}

document.write('</td><td width="20%" nowrap>');
if(page == "CU") {
	document.write("<a href='#' class='menuon'>CONTACT US</a>");
} else {
document.write('<a href="contact.html" class="menu">CONTACT US</a>');
}

document.write('</td></tr></table>');


// START SPACE

document.write('<table cellpadding="0" cellspacing="0" border="0" width="100%">');
document.write('<tr height="3%">');
document.write('&nbsp;');
document.write('</tr>');


//  End
