//
//-------------------------------------------------------------------
// Licensed Materials - Property of IBM
//
// WebSphere Commerce
//
// (c) Copyright IBM Corp. 2006
//
// US Government Users Restricted Rights - Use, duplication or
// disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
//-------------------------------------------------------------------
//

//
// ***
// * This javascript library contains a number of functions used for the display
// * of media (i.e. large image, print view, zoom, video) on the product detail page
// ***
//


// function to switch between tabs on the product detal page
// there was a clever function for doing this by switching the src attribute
// on the tab images - IE7 didn't like it.
function showTab(tabtoshow, tabtohide1, tabtohide2, tabtohide3) {
	document.getElementById(tabtohide1).style.display = "none";
	document.getElementById(tabtohide2).style.display = "none";
	document.getElementById(tabtohide3).style.display = "none";
	document.getElementById(tabtoshow).style.display = "inline";	

	document.getElementById(tabtohide1+'_tab_current').style.display = "none";
	document.getElementById(tabtohide1+'_tab').style.display = "inline";
	document.getElementById(tabtohide2+'_tab_current').style.display = "none";
	document.getElementById(tabtohide2+'_tab').style.display = "inline";
	document.getElementById(tabtohide3+'_tab_current').style.display = "none";
	document.getElementById(tabtohide3+'_tab').style.display = "inline";	
	document.getElementById(tabtoshow+'_tab_current').style.display = "inline";
	document.getElementById(tabtoshow+'_tab').style.display = "none";	
}




