// JavaScript Document
				/*This is for about us sections*/
				if(window.location.href.indexOf("default.aspx")!= -1)
				{	
					document.getElementById("home").className = "current";
				}
				
				if(window.location.href.indexOf("datediaries.aspx")!= -1)
				{
					document.getElementById("datediaries").className = "current";
					document.getElementById("home").className = "";
				}
				
