// JavaScript Document

var d=new Date();
var curr_month = d.getMonth();
var month=new Array(4);
month[0]="<b>WINTER HOURS</b><br>Weather Dependent. Please Call Us For More Information";
month[1]="<b>SPRING HOURS</b><br>Mon- Fri: 8:00 am - 4:00 pm<br>Sat: 8:00 am - 12:00 noon";
month[2]="<b>SUMMER HOURS</b><br>Mon- Fri: 7:00 am - 8:00 pm<br>Sat: 8:00 am - 14:00 pm";
month[3]="<b>FALL HOURS</b><br>Mon- Fri: 8:00 am - 4:00 pm<br>Sat: 8:00 am - 12:00 noon";

if (curr_month == 1 || curr_month == 2 || curr_month == 10 || curr_month == 11){
document.write(month [0]);
}

else if (curr_month == 2 || curr_month == 3 || curr_month == 4){
document.write(month [1]);
}

else if (curr_month == 5 || curr_month == 6 || curr_month == 7){
document.write(month [2]);
}

else if (curr_month == 8 || curr_month == 9){
document.write(month [3]);
}

else
  {
  document.write("Phone Us For<br>Current Hours");
  }
  
