// JavaScript Document
		function highlight_active_menu_links() {
			$("#header ul a").each(function(){
	        	var href = this.getAttribute('href',2);
				var location = new String( document.location );
				location = location.substr(location.lastIndexOf('/')+1,href.length);

		        if(location == href){
	            	$(this).addClass("active");
	        	}			
	    	});
		}