document.write ("<p><a id='home_page' class='buttonItem' href='#' onClick='loadContent(\"Home Page\");'>Home Page</a></p>");
document.write ("<p><a id='jobs' class='buttonItem' href='#' onClick='loadContent(\"Jobs\");'>Jobs</a></p>");
document.write ("<p><a id='policy' class='buttonItem' href='#' onClick='loadContent(\"Policy\");'>Policy</a></p>");
document.write ("<p><a id='compensation' class='buttonItem' href='#' onClick='loadContent(\"Compensation\");'>Compensation</a></p>");
document.write ("<p><a id='benefits' class='buttonItem' href='#' onClick='loadContent(\"Benefits\");'>Benefits</a></p>");
document.write ("<p><a id='employee_relations' class='buttonItem' href='#' onClick='loadContent(\"Employee Relations\");'>Employee Relations</a></p>");
document.write ("<p><a id='governors_award_for_excellence' class='buttonItem' href='#' onClick='loadContent(\"Governors Award for Excellence\");'>Governors Award for Excellence</a></p>");
document.write ("<p><a id='newsletter' class='buttonItem' href='#' onClick='loadContent(\"Newsletter\");'>Newsletter</a></p>");
document.write ("<p><a id='training' class='buttonItem' href='#' onClick='loadContent(\"Training\");'>Training</a></p>");
document.write ("<p><a id='forms,_reports_and_downloads' class='buttonItem' href='#' onClick='loadContent(\"Forms, Reports and Downloads\");'>Forms, Reports and Downloads</a></p>");



function initSideMenu() {
//==========================================================================================
// if supported, initialize TransMenus//==========================================================================================
// Check isSupported() so that menus aren't accidentally sent to non-supporting browsers.
// This is better than server-side checking because it will also catch browsers which would
// normally support the menus but have javascript disabled.
//// If supported, call initialize() and then hook whatever image rollover code you need to do
// to the .onactivate and .ondeactivate events for each menu.
//==========================================================================================
	if (TransMenu.isSupported()) {TransMenu.initialize();// hook all the highlight swapping of the main toolbar to menu activation/deactivation
// instead of simple rollover to get the effect where the button stays hightlit until
// the menu is closed.

menu1.onactivate = function() { document.getElementById("home_page").className = "hover"; };
menu1.ondeactivate = function() { document.getElementById("home_page").className = ""; };
menu2.onactivate = function() { document.getElementById("jobs").className = "hover"; };
menu2.ondeactivate = function() { document.getElementById("jobs").className = ""; };
menu3.onactivate = function() { document.getElementById("policy").className = "hover"; };
menu3.ondeactivate = function() { document.getElementById("policy").className = ""; };
menu4.onactivate = function() { document.getElementById("compensation").className = "hover"; };
menu4.ondeactivate = function() { document.getElementById("compensation").className = ""; };
menu5.onactivate = function() { document.getElementById("benefits").className = "hover"; };
menu5.ondeactivate = function() { document.getElementById("benefits").className = ""; };
menu6.onactivate = function() { document.getElementById("employee_relations").className = "hover"; };
menu6.ondeactivate = function() { document.getElementById("employee_relations").className = ""; };
menu7.onactivate = function() { document.getElementById("governors_award_for_excellence").className = "hover"; };
menu7.ondeactivate = function() { document.getElementById("governors_award_for_excellence").className = ""; };
menu8.onactivate = function() { document.getElementById("newsletter").className = "hover"; };
menu8.ondeactivate = function() { document.getElementById("newsletter").className = ""; };
menu9.onactivate = function() { document.getElementById("training").className = "hover"; };
menu9.ondeactivate = function() { document.getElementById("training").className = ""; };
menu10.onactivate = function() { document.getElementById("forms,_reports_and_downloads").className = "hover"; };
menu10.ondeactivate = function() { document.getElementById("forms,_reports_and_downloads").className = ""; };

}
}
