jQuery(function($){
	
	var strArr = window.location.href.split('/');
	$('#' + strArr[strArr.length - 2].replace(/-/g,'_')).addClass('active');
	
});