var Content = null;
if (domOk) {
    try {
        Content = getRef("Content");
        var ContentMenuItem2 = getRef("ContentMenuItem2");
        ContentMenuItem2.ExtraAction = ChangeMenuColors;
    } catch(e) {
        if (DEBUG) {
            alert (e);
        }
    }
}    
    
function ChangeMenuColors() {
    Content.className = "Content StoreLocator";
}

