$(document).ready(function() {
	$(".mainNav a").each(function() {
		if(this.href == window.location) $(this).addClass("active");
	});
});