// JavaScript Document
function sitewideAnnouncement() {
   
   //writeSitewide('90 Minute Delay - Monday, December 14th','<a href="/calendars/bellschedule.html">Click here to view the modified bell schedule</a>');
   //writeSitewide('School Closed - Monday, March 1st','Due to current road conditions, power outages, and the storm forecast;<br> school will be closed on Monday, March 1st.');
	 return true;
}


function writeSitewide(title,subtitle) {
	document.write('<div class="sitewideTitle"><span class="title">'+title+'</span></div><div class="sitewideSubtitle"><span class="subtitle">'+subtitle+'</span></div>');
	return true;
}