window.onload = function(){ 
		
		//make sure nav items are colored properly
		$('#navigation-bottom > ul > li:nth-child(1)').css('background-color', '#a5af68');
		$('#navigation-bottom > ul > li:nth-child(2)').css('background-color', '#b3be7a');
		$('#navigation-bottom > ul > li:nth-child(3)').css('background-color', '#c0c793');
		$('#navigation-bottom > ul > li:nth-child(4)').css('background-color', '#c5d398');
		
		//give page we're on a different color
		var url = document.location.toString();
		var len = url.length;
		var url_2 = "";
		var link = "";
		
		//see if we have a slash at the end
		if(url[len - 1] == "/"){
			url_2 = url.substring(0, len - 1);
		}
		
		//iterate through nav links, and add a class if we're on that page
		$("#navigation-bottom a").each(function(){
				var link = $(this).attr("href");
			
				if(link == url || link == url_2){
				    $(this).addClass("link_on");
				}
			});
		}
