// JavaScript Document
function firsttabSelected(){
	document.getElementById("relBox").style.backgroundImage = "url(images/sykesslected.jpg)";
}

function showIt(thatWindow){
		document.getElementById(thatWindow).style.display = "block";
}
function hideIt(thisWindow){
		document.getElementById(thisWindow).style.display = "none";
}
function hideAll(myArr)
{
	for(var i = 0; i < myArr.length; i++)
	{
		document.getElementById(myArr[i]).style.display = "none";
	}
}
function selectTab(thatWindow){
		document.getElementById(thatWindow).style.backgroundImage = "url(images/sykesslected.jpg)";
		document.getElementById(thatWindow).style.color = "#fff";
}
function unselectallTab(myTabb)
{
	for(var i = 0; i < myTabb.length; i++)
	{
		document.getElementById(myTabb[i]).style.backgroundImage = "url(images/sykesunslected.jpg)";
		
	}
}
