function Left(StringToLeft, EndOfCount) {
return StringToLeft.substr(0, EndOfCount);
}

jQuery(function($) {
	var path = Left(location.pathname,17);	
	var path = location.pathname;	
	$('#menu div[@href$="' + path + '"]').addClass('active');	
	
});


