
/* For use with Saved Searches */
function rollOver(element)
{
    var x = document.getElementById(element);
    x.className = 'ShowSubMenu';
}

function rollOff(element)
{
    var x = document.getElementById(element);
    x.className = 'HideSubMenu';
}
function TopMenuOn(element)
{
	var x = element;
	x.style.backgroundColor= '#CCE3A3';
}

function TopMenuOff(element)
{
	var x = element;
	x.style.backgroundColor = "transparent";
}
function openSSInf()
{
    var SSInf = window.open('/JobSearch/PopUpSavedSearchesInfo.aspx','SavedSearchesInfo','width=450,height=457');
    SSInf.focus();
}
