	
	<!-- footer to display day and date //-->
	
		
	var hereandnow = new Date();

	var thedays = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

	var themonths = new Array('January','February','March','April','May','June','July','August','September','October','November','December');

	var thedate = ((hereandnow.getDate()<10) ? "0" : "")+ hereandnow.getDate();


	function yearinfour(num){
			return (num < 1000) ? num + 1900 : num;
		}
		
	today =  thedays[hereandnow.getDay()] + ", " +
			         themonths[hereandnow.getMonth()] + " " +
			         thedate + ", " + (yearinfour(hereandnow.getYear())) ;
	document.write(today);
	
	
			
	
	
