$(function(){
   var path = location.pathname.substring(1);
   if ( path ) {
     $('#topMenuUl a[@href$="' + path + '"]').attr('class', 'active');
	 $('#menuContentUl a[@href$="' + path + '"]').attr('class', 'active'); }
	else 
	 { $('#home a').attr('class', 'active');
	 }
 });

   