
/* 	Nav
	----------------------------------------------- */
	
	// Indicate that JavaScript is available
	$$("html").invoke("addClassName", "scriptable");
  
	// Preload the indicator
	var preloader = new Image(10, 10);
	preloader.src = "/site/images/nav/over.png";
	
	// Add the indicator
	document.observe("dom:loaded", function() {
		$$("#nav li").each(function(item) {
			var link = item.down("a");
			
			// Indicate the current page
			if (item.hasClassName("home")) {
				if (window.location.pathname == "/") {
					item.addClassName("current");
				}
			} else if (window.location.href.indexOf(link.getAttribute("href")) >= 0) {
				item.addClassName("current");
			}
		});
	});
