function basename (path) {
    var b = path.replace(/^.*[\/\\]/g, '');
    
    return b;
 }
function highlight_topmenu(){
	var url=window.location.href;
	var il=null;
	switch (basename(url)){
			case 'welcome.php': il=document.getElementById('tl02'); break;
			case 'index.php': il=document.getElementById('tl01'); break;
			case 'aboutus.php': il=document.getElementById('tl03'); break;
			case 'courses.php': il=document.getElementById('tl04'); break;
			case 'accreditation.php': il=document.getElementById('tl05'); break;
			case 'verification.php': il=document.getElementById('tl06'); break;
			case 'faq.php': il=document.getElementById('tl07'); break;
			case 'onlinestore.php': il=document.getElementById('tl11'); break;
			case 'onlinestore.php#transcript': 
			case 'onlinestore.php?transcript=1':
					il=document.getElementById('tl10'); break;
	}

	if (il) {
		il.className='toplinksh';
		il.onclick='return false;';
	}
	
	
}
highlight_topmenu();
