// JavaScript Document
var prodNames = new Array("prodDescriptionImg","prodSpecificationsImg","prodReviewsImg","prodShipImg");
var prodImages = new Array("prod-description-down.jpg","prod-specs-down.jpg","prod-reviews-down.jpg","prod-shipping-down.jpg");
var prodDivs = new Array("prodDescriptionContent","prodSpecificationsContent","prodReviewsContent","prodShipContent");

function clearProdRollovers() {
	document.getElementById("prodDescriptionImg").src = "images/products/prod-description.jpg";
	//document.getElementById("prodSpecificationsImg").src = "images/products/prod-specs.jpg";
	document.getElementById("prodReviewsImg").src = "images/products/prod-reviews.jpg";
	//document.getElementById("prodShipImg").src = "images/products/prod-shipping.jpg";
}

function clearProdDivs() {
	document.getElementById("prodDescriptionContent").style.display = "none";
	//document.getElementById("prodSpecificationsContent").style.display = "none";
	document.getElementById("prodReviewsContent").style.display = "none";
	//document.getElementById("prodShipContent").style.display = "none";
}

function prodDivShow(index) {
	clearProdRollovers();
	clearProdDivs();
	
	document.getElementById(prodNames[index]).src="images/products/"+prodImages[index];
	document.getElementById(prodDivs[index]).style.display = "block";
}

function showLoader() {
	document.getElementById("shipLoader").style.visibility = "visible";
}
