// The statements below creates the footer. It will also gray out the loaded page name
	URLocation = new Array("index.htm","brochure.htm","plants.htm","smbusiness.htm","contactus.htm")
	HREFName = new Array("Home","Brochure","Plant Guide","Start a Business","Contact Us")

	footer = " ";
	for( i = 0; i < URLocation.length ; i++){
		if(location.pathname == "/"+URLocation[i]){
			var flink = "<FONT SIZE='-1' COLOR='Gray'>"+HREFName[i]+"</FONT>"
		}
		else 
		{
			var flink = "<A HREF='/"+URLocation[i]+"' style='font: 10pt arial; color: green;'>"+HREFName[i]+"</A>"
		}
		if(i%7==0){
			footer = footer+"<BR>"
		}
          if(i < (URLocation.length-1)){
		     footer = footer+" "+flink+" | "
          }
          else {
               footer = footer+" "+flink
          }           
	}
/* Write the footer */

document.write("<DIV ALIGN='center'><SPAN style='font: 10pt arial'>"+footer+"</SPAN></DIV>")
