﻿/*
** Site.Master.js
*/

$(function() {
	/*
	** Style the menu by indicating the active page
	*/
	var localUrl = Abl.Window.Uri.stripLocation().toLowerCase();
	$("ul.menu a").each(function() {
		var menuUrl = Abl.Window.Uri.stripLocation(this).toLowerCase();
		if (localUrl === menuUrl) {
			$(this).addClass("active");
		}
	});
});