
	var now = new Date();
	var month = now.getMonth();
	// var date = now.getDate();
	var year = now.getYear();
	var monthname;
	if (month == 0) monthname = "January";
	if (month == 1) monthname = "February";
	if (month == 2) monthname = "March";
	if (month == 3) monthname = "April";
	if (month == 4) monthname = "May";
	if (month == 5) monthname = "June";
	if (month == 6) monthname = "July";
	if (month == 7) monthname = "August";
	if (month == 8) monthname = "September";
	if (month == 9) monthname = "October";
	if (month == 10) monthname = "November";
	if (month == 11) monthname = "December";
	if (year < 1000) year += 1900;
	yearname = year;
//	document.write('<div id="time">');
// 	document.write("" +monthname+ " " +date+ ", " +yearname+ "");
 	document.write("" +monthname+ " " +yearname+ "");
//	document.write('<\/div>');