


          

















  

  	



      











	


				
  				
     





//<!-- Nothing Here -->
 
	var shows = new Array(4);
var show = new Array(8);

show[0] = "ABC World News";
show[1] = "News";
show[2] = "Other";
show[3] = "";
show[4] = "";
show[5] = "";
show[6] = "2:00";
show[7] = "4:30";
shows[0] = show;
var show = new Array(8);

show[0] = "America This Morning";
show[1] = "News";
show[2] = "News";
show[3] = "News";
show[4] = "";
show[5] = "In live reports from ABC News headquarters in Washington D.C. early morning news events and the top headlines of the day are examined and reported, along with the latest updates from the business and financial sector and the world of sports.";
show[6] = "4:30";
show[7] = "5:00";
shows[1] = show;
var show = new Array(8);

show[0] = "TV-3 News Daybreak";
show[1] = "News";
show[2] = "News";
show[3] = "News";
show[4] = "";
show[5] = "The TV-3 Daybreak News Team provides a comprehensive look at updated overnight and early morning news events, a detailed and an up-to-the-minute weather forecast for the Harrisonburg area and the latest sports scores for early-rising viewers.";
show[6] = "5:00";
show[7] = "7:00";
shows[2] = show;
var show = new Array(8);

show[0] = "Good Morning America";
show[1] = "Series";
show[2] = "News";
show[3] = "News/Interview/Television/Talk Show/Entertainment News";
show[4] = "";
show[5] = "Scheduled: from \"Jake and the Never Land Pirates,\" actor David Arquette; from People Style Watch, Kate Dimmock, presents hot Valentine\'s Day gifts; Good Morning America\'s coat drive still taking donations.";
show[6] = "7:00";
show[7] = "9:00";
shows[3] = show;

function getShowTitle(show){
			return show[0];
	}

function getShowStartTime(show){
			return show[6];
	}

function getShowDescription(show){
			return show[5];
	}

