	TToday = new Date();
	tlsToday = TToday.toLocaleString();
	tlsToday = tlsToday.substring(0,(tlsToday.length-11))

	URLocation = new Array("index.htm","brochure.htm","plants.htm","smbusiness.htm","contactus.htm")

<!--,"products.htm" ,"Online Products&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;" -->
	HREFName = new Array("&nbsp;&nbsp;Home&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;","Brochure&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;","Plant&nbsp;Guide&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;","Start a Business&nbsp&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;","Contact Us")

	// Any additional links that will be added to the header will only need to be added to the two arrays (HREFNAME and URLocation) above

	//Creates header entries
	
	header = " ";
	for( i = 0; i < URLocation.length ; i++){
		if(location.pathname == "/"+URLocation[i] || location.path == ""){
			var flink = "<SPAN STYLE='font: 10pt arial; COLOR: silver; font-weight:bold;'>"+HREFName[i]+"</SPAN>"
		}
		else 
		{
			var flink = "<A HREF='/"+URLocation[i]+"' STYLE='font: 10pt arial; color: white; text-decoration: none;'>"+HREFName[i]+"</A>"
		}
		header = header+" "+flink
	}

	// Writes the header

document.write("<TABLE ALIGN='center' WIDTH='640' CELLPADDING='2' CELLSPACING='0' BORDER='0'><TR><TD COLSPAN='1' ALIGN='left' WIDTH='155'><IMG SRC='/images/logo2.gif' width='60' height='80' BORDER='0' ALIGN='absbottom' VSPACE='0' HSPACE='0'></TD><TD ALIGN='center' VALIGN='bottom' COLSPAN='6' WIDTH='330' VALIGN='middle'><SPAN STYLE='font: 26pt Times New Roman; color: green; letter-spacing: 1px;'>Plants Alive Inc.</SPAN><BR><SPAN STYLE='font: 12pt Times New Roman; color: green;'>(972) 943-8788</SPAN></TD><TD VALIGN='bottom' WIDTH='155' ALIGN='right'><FONT FACE='Arial' COLOR=GREEN SIZE=-2>" + tlsToday + "</FONT></TD></TR><TR BGCOLOR='008C42'><TD ALIGN='left' COLSPAN='8'><FONT SIZE='-1' COLOR='White' FACE='Arial'>&nbsp;&nbsp;<B>plantsalive</B>.com</FONT><BR><DIV ALIGN='center' >"+header+"</DIV></TD</TR></TABLE>")
