//Change the marqueestring below to the latest news infomation, if any doubts ask the current programmer for help!!

// Get today's current date.
var now = new Date();

// Array list of days.
var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

// Array list of months.
var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');

// Calculate the number of the current day in the week.
var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();

// Calculate four digit year.
function fourdigits(number)	{
	return (number < 1000) ? number + 1900 : number;
								}

// Join it all together
today =  days[now.getDay()] + ", " +
              months[now.getMonth()] + " " +
               date + ", " +
                (fourdigits(now.getYear())) ;

var todaydate=Date 


var marqueestring="Welcome to Schools.com.sg. Today is "+today+". Check out the student's forum <a href='http://"+document.domain+"/forum/index.php'>here</a>. Find a School/Course click <a href='http://"+document.domain+"/categorical/categorical.asp'>here</a>."
document.write('<MARQUEE behavior= "scroll" scrollamount= "2" scrolldelay= "60"><SPAN class=bodytext><strong>');
document.write(marqueestring);
document.write('</strong></SPAN></MARQUEE>');