//TIME STAMP PULLS LOCAL TIME FROM USERS MACHINES
var d=new Date();
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
//Ensure correct for language. English is "January 1, 2004"
var TODAY = monthname[d.getMonth()] + " " + d.getDate() + ", " + d.getFullYear();

//=================================IMPORTANT HTML ======================================

// <div id="time_stamp" > <a>Todays Date|</a> <b><font color="#FF0000"> 
//    <script language="JavaScript" type="text/javascript">
//  document.write(TODAY); 
//       </ script>
//    </font></b>&nbsp; &nbsp;|&nbsp;&nbsp;&nbsp; <b><a href="#">JOIN MY MEMBERS 
//    CLUB</a> Keep up to date with News letters</b> <br />
//  </div>

//===============================IMPORTANT CSS======================================
 // this may not put it where you want but is designed to sit underneath your header
// just tweak these styles to suit
// #time_stamp {
//	color:#000000;
//	background-color:#00CCFF;
//	position: relative;
//	float: auto;
//	margin-top: -15px;
//	border-top: 1px solid #778899;
//	border-bottom: 1px dotted #B2BCC6;
//	padding-top:4px ;
//	height:1.5em
//	}
	/*this controls the text befor the time stamp*/  
//#time_stamp a {
//	font: 110% Georgia, "Times New Roman", Times, serif;
//	color: #fff;  
 //   margin-left: 1.3em;
//padding:5px 5px 5px 5px;
//}


