function leftNav(){
    try{        
        var getURL = document.URL;
       	var getText = getURL.search("scholastic-overview");                
        if(getText!=-1){
            $("#left-nav-bar ul li").last().hide();
        }              
    }
    catch(Error){
    }
}

$(document).ready(function() {	 		 
	 leftNav();	 
});
