// Bobby Likis Car Clinic Content Changer
// Author: John Gerdsen; blackshirtmedia.com
// Date: 1/31/07
// Email form needs to be displayed every Tuesday & Thursday, 1p-4p ET.
// Retrieve time and determine if current time falls between this.

//Initial variables needed for script
var d=new Date();
var timeZone = new Array(4);
var redirectPage = "http://www.carclinicnetwork.com/bobbylikis2.htm";

//Arrays that hold timezone information, Timezone name, and appropriate show times in relation to EST
timeZone[5] = new Array(3);
timeZone[5][0]="EST";
timeZone[5][1]="13";
timeZone[5][2]="16";
timeZone[6] = new Array(3);
timeZone[6][0]="CST";
timeZone[6][1]="12";
timeZone[6][2]="15";
timeZone[7] = new Array(3);
timeZone[7][0]="MST";
timeZone[7][1]="11";
timeZone[7][2]="14";
timeZone[8] = new Array(3);
timeZone[8][0]="PST";
timeZone[8][1]="10";
timeZone[8][2]="13";

//If it is a Tuesday or Thursday, the show will be on.
if(d.getDay() == 2 || d.getDay() == 4)
{
	//The show will be on but only from 1 - 4pm EST; determine if it is on in the viewers timezone
	if(d.getHours()>=timeZone[d.getTimezoneOffset()/60][1] && d.getHours()<timeZone[d.getTimezoneOffset()/60][2])
	{
		//Redirect to page with email form
		document.location = redirectPage;
	}
}