///////////////////////////////////////////
// Content swapping script
// Shows/Hides Career Page Subnavigation
///////////////////////////////////////////

window.addEvent('domready',function(){
	// get all li's with class "menu"
	$$('li.menu').each(function(el){
		// on mouseover add class "hover"
		el.onmouseover=function() { el.addClass('hover'); }
		// on mouseout remove class "hover"
		el.onmouseout=function() { el.removeClass('hover'); }
	});
});



/* //////// OLD ORIGINAL JAVASCRIPT
function showCareerNavItems(id) {
	// display 'drop-down' navigation items
	showUL = 'ul_' + id;
	document.getElementById(showUL).className = "show";
}

function hideCareerNavItems(id) {
	// hide 'drop-down' navigation items
	hideUL = 'ul_' + id;
	document.getElementById(hideUL).className = "hide";
}
*/