var imageArray = new Array();

imageArray[0] = "http://www.fhvideo.com/img/newprod_off.gif"+","+"http://www.fhvideo.com/img/newprod.gif";
imageArray[1] = "http://www.fhvideo.com/img/mostpop_off.gif"+","+"http://www.fhvideo.com/img/mostpop.gif";
imageArray[2] = "http://www.fhvideo.com/img/featured_off.gif"+","+"http://www.fhvideo.com/img/featured.gif";
imageArray[3] = "http://www.fhvideo.com/img/spec_off.gif"+","+"http://www.fhvideo.com/img/spec.gif";
imageArray[4] = "http://www.fhvideo.com/img/include_off.gif"+","+"http://www.fhvideo.com/img/include.gif";


function changeDetailPageTab(imgIndex, tabCount) {

	for (var i=0; i<tabCount; i++) {

		if (document.getElementById('tab'+i) != null) { 
			document.getElementById('tab'+i).src = (imageArray[i].split(','))[0];
			document.getElementById('div'+i).style.display = "none";
		}
	}

	document.getElementById('tab'+imgIndex).src = (imageArray[imgIndex].split(','))[1];
	document.getElementById('div'+imgIndex).style.display = "block";
	
}
