// JavaScript Document

jQuery(document).ready(function() { 

	/**
	 * Main navigation
	 */
	jQuery("div#navigation li").each( function() {
											   
		var link = jQuery(this).find('a');
		
		// If this is the home page
		if ((location.pathname == '/' && link.attr('href') == '/') || location.pathname == 'index.html' && link.attr('href') == 'index.html') {
			jQuery("div#navigation li a").removeClass("on");
			link.addClass("on");
			
		// Check to see if this is a top level nav item
		} else if ((location.pathname.indexOf(link.attr('href')) > -1) && link.attr('href') != '/') {
			jQuery("div#navigation li a").removeClass("on");
			link.addClass("on");
		}
	});
	

});
