//writen by Alex Vila
//date 11-28-06
//instructions
// tabtitle = this is your title 
// tabLinks = the link associated with title

	var weekend_tabs = "off";
	var showtabs = "yes";
	var startingtab = 0;
	var set_rotation = 0;
	var set_rotation_time = 50;
	var tabLinks=new Array();tabtitle=new Array(); timeofday=new Array(); 
	tabtitle[0]="News";
	tabLinks[0]="http://centraltampa.tbo.com/panels/news.html";
	tabtitle[1]="Your Photos";
	tabLinks[1]="http://centraltampa.tbo.com/panels/photos.html";
	
	
	
	//add panels to end of array for weekends
	if (weekend_tabs == "on")
	{
		if (day == 0 || day == 6){
			var ary_add = tabtitle.length;
			tabtitle[ary_add + 1]="Jobs";
			tabLinks[ary_add + 1]="http://www.tbo.com/careerseeker/panels/jobseeker.htm";
			tabtitle[ary_add + 2]="Cars";
			tabLinks[ary_add + 2]="http://carseeker2.tbo.com/autos?tp=carseeker.tbo.com&category=frames&temp_type=search&tl=5";
			tabtitle[ary_add + 3]="Homes";
			tabLinks[ary_add + 3]="http://www.tbo.com/homeseeker/panels/homesforsale.htm";
		}
	}
	//add panels to top off array for upcoming events
	// > greater then; < less then;
	//hr = hour  month = mounth - 1
	if (hr >= 16  && month == 10 && hr < 17){
		//tabtitle.unshift("ALex");
		//tabLinks.unshift("http://www.tbo.com/includes/tbowidgetettd.htm");
	}