var news = new Array(); 
//all you have to update are the following news items.
//News items may include html markup such as <b> tags and links.
//there may be as many items as necessary.

//news[0] = 'Information coming soon';
//news[0]='The community meeting previously scheduled for April 16 is cancelled';
//news[0]='Under construction for the 2007-2008 school year';
//news[0]='Welcome Back to School!';
//news[0]='First marking period report cards will be mailed November 21';

news[0]='Wayne Valley - Ranked #1 High School in Passaic County';

//Do not change anything below for regular updates.

var im = '<img src="/schools/high/waynevalley/flagsmall.gif" width="25" height="13">';
var sp = '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ';

current_time = new Date ();
hour = current_time . getHours ();
if (hour < 4)
	greeting = "Good early morning.";
else if (hour < 12)
	greeting = "Good morning.";
else if (hour < 18)
	greeting = "Good afternoon.";
else
	greeting = "Good evening.";

months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');
now = new Date();
year = now.getYear();
if(year < 100) { year = year + 2000; } else { if(year >= 100 && year < 2000) { year = year + 1900; } }
greeting+=(" &nbsp; Today is " + months[now.getMonth()] + " " + now.getDate() + ", " + year);
document.writeln('<marquee scrollamount="3" scrolldelay="5">');
document.writeln( im +sp +greeting+sp+im ); 
for(i=0; i< news.length; i++)
	document.writeln( sp + news[i] + sp +im );
document.writeln('</marquee>');