
function InitializeUpperMenu() {
    var sPath = window.location.pathname;
    var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
    var imgRootPath = 'Images/Themes/Default/Layout/Modules/Page/Menu/en-US/'
    
    switch (sPage) {
        case 'Default.aspx':
            $get('img_title_home').src = imgRootPath + 'title_home_163_15_lit.jpg';
            break;
        case 'Exhibitions.aspx':
            $get('img_title_exhibitions').src = imgRootPath + 'title_exhibitions_163_15_lit.jpg';
            break;
        case 'News.aspx':
            $get('img_title_news').src = imgRootPath + 'title_news_163_15_lit.jpg';
            break;
        case 'Artists.aspx':
            $get('img_title_artists').src = imgRootPath + 'title_artists_163_15_lit.jpg';
            break;
        case 'ContactUs.aspx':
            $get('img_title_contact').src = imgRootPath + 'title_contact_163_15_lit.jpg';
            break;
        default:
            $get('img_title_home').src = imgRootPath + 'title_home_163_15_lit.jpg';
            break;
    }
}


