/* 
Javascript for Fitness19
Eben Design
*/

function showZip()
{
	document.getElementById('sStateTab').className = "state";
	document.getElementById('hFindFormState').style.display = "none";
	document.getElementById('sZipTab').className = "zip-active";
	document.getElementById('hFindFormZip').style.display = "block";
}

function showState()
{
	document.getElementById('sStateTab').className = "state-active";
	document.getElementById('hFindFormState').style.display = "block";
	document.getElementById('sZipTab').className = "zip";
	document.getElementById('hFindFormZip').style.display = "none";
}


/* image slideshows */

function toggleThru(imgTab, iVal)
{
	var imgLocations = new Array();
	
	imgLocations[0] = "images/pic-cardio-slideshow-1.jpg";
	imgLocations[1] = "images/pic-cardio-slideshow-2.jpg";
	imgLocations[2] = "images/pic-cardio-slideshow-3.jpg";
	imgLocations[3] = "images/pic-cardio-slideshow-4.jpg";
    imgLocations[4] = "images/pic-childcare-slideshow-1.jpg";
	imgLocations[5] = "images/pic-childcare-slideshow-2.jpg";
	imgLocations[6] = "images/pic-childcare-slideshow-3.jpg";
	imgLocations[7] = "images/pic-childcare-slideshow-4.jpg";
	imgLocations[8] = "images/pic-strength-slideshow-1.jpg";
	imgLocations[9] = "images/pic-strength-slideshow-2.jpg";
	imgLocations[10] = "images/pic-strength-slideshow-3.jpg";
	imgLocations[11] = "images/pic-strength-slideshow-4.jpg";
	imgLocations[12] = "images/pic-freeweights-slideshow-1.jpg";
	imgLocations[13] = "images/pic-freeweights-slideshow-2.jpg";
	imgLocations[14] = "images/pic-freeweights-slideshow-3.jpg";
	imgLocations[15] = "images/pic-freeweights-slideshow-4.jpg";
	
	
	document.getElementById('ssshowImgPic').src = imgLocations[iVal];
	document.getElementById('imgT0').className = "none";
	document.getElementById('imgT1').className = "none";
	document.getElementById('imgT2').className = "none";
	document.getElementById('imgT3').className = "none";
	document.getElementById(imgTab).className = "active";
}

