function SubMenuOn(someID)
{
var thisObj = document.getElementById(someID).style;
thisObj.backgroundColor = '#ffffff';
thisObj.color='#00acbf';
}

function SubMenuOff(someID)
{
var thisObj = document.getElementById(someID).style;
thisObj.backgroundColor = '#ffffff';
thisObj.color='#000000';
}

