// JavaScript Document

// Jquery for page tabs
var pathAndFile = location.pathname.substr(location.pathname.lastIndexOf('/') + 1);

$(document).ready(function () {
	$("#pageTabs a[@href*=" + pathAndFile + "]").addClass("pagetab_ON");
});
