<!--
now = new Date(); 
timez = now.getTimezoneOffset();
if ((navigator.appVersion.indexOf('MSIE 3') != -1)) timez = timez * (-1);
now.setTime(now.getTime() + timez*60*1000);
now.setTime(now.getTime() + -5*60*60*1000);	// 5 for (EST) for standard time(nov-Mar); 4 (EDT) daylight savings 
day_of_week = now.getDay();           		// get day of week 
hour = now.getHours();                		// get hour in 24 hour time (0-23)

var show_AAL_L   = false;  		// the flag for whether the time parameters are met ..used in nav script
var show_AAL_L_A = false;  		// the flag for whether the time parameters are met
var show_AAL_L_B = false;  		// the flag for whether the time parameters are met		    

//monday-th   10a-noon   hours of 10 &11 being 10 & 11
if (day_of_week == 1 || day_of_week == 2 || day_of_week == 3 || day_of_week == 4) {      
if (hour == 10 || hour == 11) {
show_AAL_L_A  = true;
show_AAL_L  = true;
}}

//monday-th  2p-6   hours 2,3,4,5 being 14,15,16,17
if (day_of_week == 1 || day_of_week == 2 || day_of_week == 3 || day_of_week == 4) {      
if (hour == 14 || hour == 15 || hour == 16 || hour == 17) {
show_AAL_L_B  = true;
show_AAL_L  = true;
}}

//monday-th 7p-10  hours 7,8,9 being 19,20,21
if (day_of_week == 1 || day_of_week == 2 || day_of_week == 3 || day_of_week == 4) {       
if (hour == 19 || hour == 20 || hour == 21) {
show_AAL_L_B  = true;
show_AAL_L  = true;
}}

//Sunday 7p-10  hours 7,8,9 being 19,20,21
if (day_of_week == 0) {         
if (hour == 19 || hour == 20 || hour == 21) {
show_AAL_L_B  = true;
show_AAL_L  = true;
}}

  //disable tag follows, comment out if wanted active
  //show_AAL_L    = false;
  show_AAL_L_A  = false; 
  show_AAL_L_B  = false; 

//change the hours notes on the mobile chat page

var show_dougref   = false;  		// the flag for whether the time parameters are met ..used in nav script

//monday-th   12a-2p      sun=0  mon=1    fri=5
if (day_of_week == 1 || day_of_week == 2 || day_of_week == 3 || day_of_week == 4) {         
  if (hour >= 12 && hour <= 13) {
    show_dougref  = true;
  }
}

//disable tag follows, comment out if wanted active
   //show_dougref    = false;


//-->

