
$(function() {
	$("#header").find("a").each(function(index, link) {
		if(window.location.href == link.href) {
			$(link).addClass("active");
		}
	});
});

