// JavaScript Document
function showProductView(whichPoint,pointCount)
{
	for ( i=0; i<pointCount; ++i ) {
		document.getElementById('prod-view-' + i).style.display = 'none';
	}
	document.getElementById('prod-view-' + whichPoint).style.display = 'block';
}


function MostraGalleria(whichPoint,pointCount,strNomeID)
{
	for ( i=0; i<pointCount; ++i ) {
		document.getElementById(strNomeID + i).style.display = 'none';
	}
	document.getElementById(strNomeID + whichPoint).style.display = 'block';
}

function testDOM(testID){
	testID = document.getElementById(testID);
	alert(testID.getElementsByTagName('ul').length);
}

function fMenu(whichPoint,pointCount,strNomeID){
	for ( i=0; i<pointCount; ++i ) {
		document.getElementById(strNomeID + i).style.display = 'none';
	}
	document.getElementById(strNomeID + whichPoint).style.display = 'block';
}



