<!-- Begin Library Hours Script 

var message = ""; 
today = new Date(); 
myDay = today.getDay(); 
myDayOfMonth = today.getDate(); 

<!-- Sample of a message with a link. Note the single quotes. --> 
<!-- message = "7:00am - 8:00pm <br> <a href='/libraryinfo/news/'>read more news</a>"; -->
<!-- --> 

function writeTip2() { 

<!-- Monday - Thursday hours --> 

if (myDay <= 4 && myDay >=1){ 

<!-- Semester Hours --> 

message = "7am - 2am"; 

<!-- Break Hours --> 

<!--message = "7am - 6pm";--> 

} 

<!-- Friday hours --> 

if (myDay == 5){ 

<!-- Semester Hours --> 

message = "7am - 8pm"; 

<!-- Break Hours --> 

<!--message = "7am - 6pm";--> 

} 

<!-- Saturday hours --> 
if (myDay == 6){ 

<!-- Semester Hours --> 
message = "9am - 8pm"; 
<!-- Break Hours --> 
<!--message = "12pm - Midnight";--> 
} 
<!-- Sunday hours --> 
if (myDay == 0){ 

<!-- Semester Hours --> 

message = "noon - 2 am"; 

<!-- Break Hours --> 

<!--message = "Closed";--> 
} 
<!-- Place monthly exceptions (holidays, shortened hours, etc.) below based on the day of the month they fall on. --> 

switch (myDayOfMonth){ 

case 19: 
message = "noon - 6pm";
break

} 

document.write(message); 
} 

// End -->


<!--
//   javascript that swaps in a new header photo on reload
var pic = new Array()
pic[0] = "/images/libHoursbg1.jpg"
pic[1] = "/images/libHoursbg2.jpg"
pic[2] = "/images/libHoursbg3.jpg"
pic[3] = "/images/libHoursbg4.jpg"


var show = Math.floor(Math.random() * (pic.length))

