﻿//Requires jQuery library
//Searches the #Navigation for any current links and selects them.


//In our Navigation area, let's select the current link:
$(document).ready(SelectCurrentLink);
function SelectCurrentLink(){
	$("#Navigation a").filter(IsCurrentLink).addClass("selected");
}
function IsCurrentLink(){
	return (this.href.toLowerCase() == location.href.toLowerCase());
}
