$(document).ready(function() {
	
	highlight_nav();
	
});  


function highlight_nav() {
	// Get current page name
	var thispage = document.location.href;
	thispage = thispage.substr(thispage.indexOf("/") + 1);
	
	// See if current page matches any link hrefs
	$("#nav ul li a").each(function() {
		var current_href = $(this).attr("href");
		if(thispage.match(current_href) != null) {
			$(this).addClass("selected");
		}
	});  
}