//////////////////////////////////////////////////////////////
// Image Functions
function displayLayer(layerName) {
	$(layerName).style.display="block";
}

function hideLayer(layerName) {
	$(layerName).style.display="none";
}

// set array index
var divIndex = 0;
var divCount = 11;

/////////////////////////////////////////////////////
// function to display next image
/////////////////////////////////////////////////////
function switchImage(dirToGo)
{
	// increment index
	if (dirToGo=="next"){
			divIndex += 1;
	}else{
		if (divIndex > 0)
			divIndex -= 1;
	}
	
	if (divIndex == divCount)
		divIndex = 0;

	// turn on/off next/previous buttons
	/*
	if (divIndex == divCount-1)
		$('btn-next').className = 'consumer-btn-off';
	else
		$('btn-next').className = 'consumer-btn-on';
	*/
	if (divIndex == 0)
		$('btn-back').className = 'consumer-btn-off';
	else
		$('btn-back').className = 'consumer-btn-on';

	// Hide all divs
	UtilHideAllElement('consumer-blurb');
	UtilToggleElementDisplay('captionDiv'+divIndex);
}



