// JavaScript Document

						
<!--
var currentTime = new Date()
var dow = currentTime.getDay()
var dom = currentTime.getDate()
var mym = currentTime.getMonth()
var myy = currentTime.getFullYear()

if (mym == 10 && dom == 6)
document.write("Today's Hours: 10:00am - 12:00am");
else if (mym == 10 && dom == 7)
document.write("Today's Hours: 7:30am - 12:00am");
else if (mym == 10 && dom == 21)
document.write("Today's Hours: 7:30am - 12:00am");
else if (mym == 10 && dom == 22)
document.write("Today's Hours: 7:30am - 12:00am");
else if (mym == 10 && dom == 23)
document.write("Today's Hours: 7:30am - 5:00pm");
else if (mym == 10 && dom == 24)
document.write("Library Closed Today");
else if (mym == 10 && dom == 25)
document.write("Library Closed Today");
else if (mym == 11 && dom == 15)
document.write("Today's Hours: 7:30am - 12:00am"); 
else if (mym == 11 && dom == 18)
document.write("Today's Hours: 10:00am - 12:00am");
else if (mym == 11 && dom == 23)
document.write("Today's Hours: 7:30am - 5:00pm");
else if (mym == 11 && dom == 24)
document.write("Library Closed Today");
else if (mym == 11 && dom == 25)
document.write("Library Closed Today");
else if (mym == 11 && dom == 26)
document.write("Today's Hours: 7:30am - 5:00pm");
else if (mym == 11 && dom == 27)
document.write("Today's Hours: 7:30am - 5:00pm");
else if (mym == 11 && dom == 28)
document.write("Today's Hours: 7:30am - 5:00pm");
else if (mym == 11 && dom == 29)
document.write("Today's Hours: 7:30am - 5:00pm");
else if (mym == 11 && dom == 30)
document.write("Today's Hours: 7:30am - 5:00pm");
else if (mym == 11 && dom == 31)
document.write("Today's Hours: 7:30am - 5:00pm");
else if (mym == 0 && dom == 1)
document.write("Library Closed Today");
else if (mym == 0 && dom == 16)
document.write("Today's Hours: 7:30am - 12:00am");
else if (mym == 0 && dom == 24)
document.write("Today's Hours: 7:30am - 12:00am");
else if (mym == 0 && dom == 26)
document.write("Today's Hours: 7:30am - 12:00am");
else if (mym == 0 && dom == 29)
document.write("Today's Hours: 10:00am - 12:00am");
else if (mym == 1 && dom == 5)
document.write("Today's Hours: 10:00am - 12:00am");
else if (mym == 1 && dom == 9)
document.write("Today's Hours: 7:30am - 12:00am");
else if (mym == 1 && dom == 26)
document.write("Today's Hours: 10:00am - 12:00am");
else if (mym == 1 && dom == 27)
document.write("Today's Hours: 7:30am - 12:00am");
else if (mym == 2 && dom == 13)
document.write("Today's Hours: 7:30am - 12:00am");
else if (mym == 2 && dom == 21)
document.write("Today's Hours: 7:30am - 12:00am");
else if (mym == 2 && dom == 22)
document.write("Today's Hours: 7:30am - 12:00am");
else if (mym == 3 && dom == 30)
document.write("Today's Hours: 7:30am - 12:00am");
else if (mym == 4 && dom == 1)
document.write("Today's Hours: 7:30am - 12:00am");
else if (mym == 4 && dom == 24)
document.write("Today's Hours: 7:30am - 12:00am");
else if (dow==0)
document.write("Today's Hours: 10:00am - 11:00pm");
else if (dow>0 && dow<5 )
document.write("Today's Hours: 7:30am - 11:00pm");
else if (dow==5 )
document.write("Today's Hours: 7:30am - 9:00pm");
else if (dow==6)
document.write("Today's Hours: 10:00am - 9:00pm");


//-->
						

