$(document).ready(function(){
	

     $("#menutab a").each(function(){
		var hreflink = $(this).attr("href");
	
		if (hreflink.toLowerCase()==location.href.toLowerCase() || location.href.toLowerCase().search(hreflink.toLowerCase())>=0) {
			$(this).attr({"class":"active"});
		}
  });
});