﻿$(function(){
	$("ul#navbar li a").each(function(){
		if(location.href.indexOf(this.href)>=0) $(this).addClass("selected");
	});
});
