﻿/*	Home page loader
*	V2.6
*	(C) 2005 - 2010 Ryan Lowe
*/

function parallelLoad(){ //loads elements in parallel
	document.getElementById("TBABadgeIMG").src = "http://www.thebluealliance.net/tbatv/teambadge/teambadge_gen.php?team=1806&start=090909&stop=C0C0C0";
	document.getElementById("TBABadgeIMG").alt = "Team 1806 - S.W.A.T.";
	BGImage();
}

//Background picture code
var lastPic; //BG Pic vars
var nowPic; //BG Pic vars
function BGImage(){

	var pic = Math.random();
	
	if (nowPic == null)
	{
		nowPic = BGImageRand(pic);
	}
	while (lastPic == nowPic){
		pic = Math.random();
		nowPic = BGImageRand(pic);
	}
	lastPic = nowPic;
	showLoad(true);
}

function BGImageRand(pic){

		if (pic > .9)
	{
		document.getElementById("BGIMG").src = "./Media/HomePictures/Atlanta%202009(Small).jpg";
		document.getElementById("BGIMG").alt = "S.W.A.T. Team in Atlanta, GA at the world championship.";
		return 0;
	}
	else if (pic > .7)
	{
		document.getElementById("BGIMG").src = "./Media/HomePictures/1806.jpg";
		document.getElementById("BGIMG").alt = "Helmet on the 2009 S.W.A.T. Robot.";
		return 2;
	}
	else if (pic > .55)
	{
		document.getElementById("BGIMG").src = "./Media/HomePictures/SWAT07.jpg";
		document.getElementById("BGIMG").alt = "S.W.A.T. at the KC regional with Dean Kamen in 2007.";
		return 3;
	}
	else if (pic > .4)
	{
		document.getElementById("BGIMG").src = "./Media/HomePictures/Robot%20Cart.jpg";
		document.getElementById("BGIMG").alt = "S.W.A.T. robot and drivers in Atlanta, GA";
		return 4;
	}
	else if (pic > .3)
	{
		document.getElementById("BGIMG").src = "./Media/HomePictures/KC%20Robots.jpg";
		document.getElementById("BGIMG").alt = "S.W.A.T. and SWART Dogs hanging from tower in KC 2010.";
		return 5;
	}
	else if (pic > .2)
	{
		document.getElementById("BGIMG").src = "./Media/HomePictures/StL%2010.jpg";
		document.getElementById("BGIMG").alt = "S.W.A.T. at the 2010 St. Louis Regional.";
		return 6;
	}
	else
	{
		document.getElementById("BGIMG").src = "./Media/HomePictures/Atlanta08.jpg";
		document.getElementById("BGIMG").alt = "SWAT Team in Atlanta, GA in 2008.";
		return 7;
	}	
}

function showLoad(yes){
	if (yes == true)
	{
		document.getElementById("LL").style.visibility="visible";
	}
	else
	{
		document.getElementById("LL").style.visibility="hidden";
	}
}

function showCDFeed(){ //popup for CD Feed viewer
	window.open('./Files/CDFeedView/CDFeed.html','_blank','location=no,menubar=no,resizeable=no,toolbar=no,width=380,scrollbars=yes',false);
}

function showCDTime(){
	window.open('./Files/CDTIME3.html','_blank','location=no,menubar=no,resizeable=no,toolbar=no,width=260,height=80',false);
}