// JavaScript Document

						
							<!--
							var currentTime = new Date()
							var dow = currentTime.getDay()
							var dom = currentTime.getDate()
							var mym = currentTime.getMonth()
							var myy = currentTime.getFullYear()
							
							if (mym == 11 && dom == 23) 
							document.write("Today's Hours: 8:00am-4: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("Library Closed Today");
							else if (mym == 11 && dom == 27) 
							document.write("Today's Hours: 11:00am-4:00pm");
							else if (mym == 11 && dom == 28) 
							document.write("Today's Hours: 11:00am-4:00pm");
							else if (mym == 11 && dom == 29) 
							document.write("Today's Hours: 11:00am-4:00pm");
							else if (mym == 11 && dom == 30) 
							document.write("Today's Hours: 11:00am-4:00pm");
							else if (mym == 11 && dom == 31) 
							document.write("Library Closed Today"); 
							else if (mym == 0 && dom == 1) 
							document.write("Library Closed Today"); 
							else if (mym == 0 && dom == 12) 
							document.write("Today's Hours: 8:00am-9:00pm"); 
							else if (mym == 0 && dom == 17) 
							document.write("Library Closed Today"); 
							else if (mym == 0 && dom == 26) 
							document.write("Today's Hours: 8:00am - 9:00pm"); 
							else if (mym == 4 && dom == 31) 
							document.write("Today's Hours: 10:00am-8:00pm"); 
							else if (mym == 6 && dom == 4) 
							document.write("Library Closed Today");
							else if (mym == 8 && dom == 6) 
							document.write("Today's Hours: 11:00am-4:00pm");
							else if (mym == 10 && dom == 24) 
							document.write("Today's Hours: 8:00am-5:00pm");
							else if (mym == 10 && dom == 25) 
							document.write("Library Closed Today");
							else if (mym == 10 && dom == 26) 
							document.write("Library Closed Today");
							else if (dow==0) 
							document.write("Today's Hours: 9:30am - 12:00am"); 
							else if (dow>0 && dow<5 )
							document.write("Today's Hours: 8:00am - 12:00am"); 
							else if (dow==5 ) 
							document.write("Today's Hours: 8:00am-10:00pm"); 
							else if (dow==6) 
							document.write("Today's Hours: 10:00am-10:00pm"); 
							
							
							//-->
						
