//Array containing the IDs of the [hidden] product boxes
var productBoxID = new Array();
productBoxID[0] = "pbSensorHubs";
productBoxID[1] = "pbSerialDevices";
//productBoxID[2] = "pbPowerStrips";
productBoxID[3] = "pbSensors";
productBoxID[4] = "pbSoftware";

//Array containing the IDs of the links displaying the product boxes
var productBoxShow = new Array();
productBoxShow[0] = "pbShowSH";
productBoxShow[1] = "pbShowSDC";
//productBoxShow[2] = "pbShowPS";
productBoxShow[3] = "pbShowSens";
productBoxShow[4] = "pbShowSoft";

var productBoxHide = new Array();
productBoxHide[0] = "pbHideSH";
productBoxHide[1] = "pbHideSDC";
//productBoxHide[2] = "pbHidePS";
productBoxHide[3] = "pbHideSens";
productBoxHide[4] = "pbHideSoft";


function showObject(objectID, showSymbol, hideSymbol) {
	document.getElementById(objectID).style.display = 'block';
	document.getElementById(showSymbol).style.display = 'inline';
	document.getElementById(hideSymbol).style.display = 'none';
} 


function hideObject(objectID, showSymbol, hideSymbol) {
	document.getElementById(objectID).style.display = 'none';
	document.getElementById(showSymbol).style.display = 'inline';
	document.getElementById(hideSymbol).style.display = 'none';
}