var months=new Array(13);
months[1]="January";
months[2]="February";
months[3]="March";
months[4]="April";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="October";
months[11]="November";
months[12]="December";

var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();

helixtime = new Date()
	hrstime = helixtime.getHours()
	if (hrstime < 7)
		{document.write('<img src="stat/gm1.gif" alt="Good morning and welcome to Jane and Partners" style="padding:10px" />')
		}
	if (hrstime > 6 && hrstime <12)
		{document.write('<img src="stat/gm1.gif" alt="Good morning and welcome to Jane and Partners" style="padding:10px" />')
		}
	if (hrstime > 11 && hrstime <18)
		{document.write('<img src="stat/gm2.gif" alt="Good afternoon and welcome to Jane and Partners" style="padding:10px" />')
		}
	if (hrstime >17)
		{document.write('<img src="stat/gm3.gif" alt="Good evening and welcome to Jane and Partners" style="padding:20px" />')
		}

if ((navigator.appName == "Microsoft Internet Explorer") && (year < 2000))		
year="19" + year;
if (navigator.appName == "Netscape")
year=1900 + year;
