$(function(){
$('#nav a').each(function(){
		var RegularExpression  =  new RegExp($(this).attr('href'));
		if(window.location.href.search(RegularExpression)>-1)
		{
			$(this).parent().addClass("active");
			return;			
		}
		
	});	

});
