   function weekdayJock() {
   		if ((hour >= 0) && (hour < 6)) {
   			strImage = "default.jpg";
   			strName = "Another 50-minute Music Hour!";
   			strLink = "";
   			strCopy = "";
   		}
   		if ((hour >= 6) && (hour < 10)) {
   			strImage = "fotschMcclain.jpg";
   			strName = "Fotsch &amp; McClain";
   			strLink = "";
   			strCopy = "Monday-Friday<br />5AM - 10AM";
   		}
   		if ((hour >= 10) && (hour < 15)) {
   			strImage = "blake.jpg";
   			strName = "Lindsay Blake";
   			strLink = "";
   			strCopy = "Monday-Friday<br />10AM - 3PM";
   		}
   		if ((hour >= 15) && (hour < 20)) {
   			strImage = "default.jpg";
   			strName = "Another 50-minute Music Hour!";
   			strLink = "";
   			strCopy = "Monday-Friday<br />3PM - 8PM";
   		}
    		if ((hour >= 20) && (hour <= 23)) {
   			strImage = "scott.jpg";
   			strName = "Scott";
   			strLink = "";
   			strCopy = "Monday-Friday<br />8PM - Midnight";
   		}
   }
   function saturday() {
   		if ((hour >= 0) && (hour < 8)) {
   			strImage = "default.jpg";
   			strName = "Another 50-minute Music Hour!";
   			strLink = "";
   			strCopy = "";
   		}
   		if ((hour >= 8) && (hour <= 23)) {
   			strImage = "default.jpg";
   			strName = "Another 50-minute Music Hour!";
   			strLink = "";
   			strCopy = "";
   		}
   	}
   function sunday() {
   		if ((hour >= 0) && (hour < 16)) {
   			strImage = "default.jpg";
   			strName = "Another 50-minute Music Hour!";
   			strLink = "";
   			strCopy = "";
   		}
   		if ((hour >= 16) && (hour < 20)) {
   			strImage = "seacrest.jpg";
   			strName = "Ryan Seacrest's American Top 40";
   			strLink = "";
   			strCopy = "<br />8AM - Noon";
   		}
   		if ((hour >= 20) && (hour <= 23)) {
   			strImage = "default.jpg";
   			strName = "Another 50-minute Music Hour!";
   			strLink = "";
   			strCopy = "";
   		}
   	}
   
   today = new Date();
   //as no date has been entered, then it is taken as today. 
   //today is just a variable and is not a keyword! 
   thisDay = today.getDay(); 
   hour = today.getHours();
   
   //thisDay = 0;
   //hour = 15;
   
   switch (thisDay) 
   { 
   	case 0: {
 			sunday(); 
 			break;
  	}
   	case 6: {
   		saturday();
   		break; 
  	}
   	default: {
   		weekdayJock();
   		break;
  	}
   }
   
var strPath = "http://media.journalinteractive.com/designimages/power965_onair_"; 
document.write("<div id=\"onAir\"><a href=\"/hitmusic/listenlive\"><img src=\""+strPath+strImage+"\" alt=\""+strName+"\" /></a>");
document.write("</div>");
