var path = location.pathname.substring(1);
$('#left-secondary-2010 a[href$="' + path + '"]').attr('class', 'orange-text');

// set top menu based on URL of its sub-menu items
var top_menu_path = '';
if(path.search(/^basics/)>-1) top_menu_path='basics';
if(path.search(/^about-us/)>-1) top_menu_path='about-us';
if(path.search(/^why-spe/)>-1) top_menu_path='why-spe';
if(path.search(/^links/)>-1) top_menu_path='links';
if(path.search(/^newsroom/)>-1) top_menu_path='links';
if(path.search(/^tools/)>-1) top_menu_path='tools';
if(path.search(/^contact/)>-1) top_menu_path='contact';

if(top_menu_path.length>1){
  $('#top-menu-2010 a[href$="' + top_menu_path + '"]').attr('class', 'orange-text');
}

// hide loader gif after page loads
$(window).load(function () {
  jQuery('#loading108').hide('slow');
});

