$(document).ready(initPage); function initPage() { buildTemplate(); initMenu(); } function initMenu() { var str_url = window.location.toString().toLowerCase(); var str_link = ""; // mark submenu selected $('#menu .submenu a').each( function() { str_link = $(this).attr('href').toLowerCase(); if (str_url.indexOf(str_link) != -1) { $(this).addClass('selected'); } } ); // mark mainmenu selected $('#menu li').each( function() { str_link = $('a:first-child', this).attr('href').toLowerCase(); var path_start = str_url.indexOf(str_link); var path = ''; if (path_start != -1 ) { path = str_url.substring(path_start); } if ((path_start != -1 && path.length == str_link.length) || $('.submenu a.selected', this).length > 0) { $(this).addClass('selected'); } } ); // select the first item (homepage) if nothing else is selected if ($('#menu .selected').length == 0) { $('#menu li:first-child').addClass('selected'); } } function openWin(url, win_name) { window.open(url, win_name, 'width=1000,height=600,resizable=yes,scrollbars=yes,location=yes'); } function buildTemplate() { var str_header = '
' + '
' + ' ' + ' ' + '
' + '
'; var str_footer = '' + '

Copyright © 2010 Citigroup

'; $('#header').append(str_header); $('#footer').append(str_footer); }