domReady(function()
{
	var instanceOne = new ImageFlow();
	instanceOne.init({ ImageFlowID:'team', reflections:0, startID:3, slider:false, captions: false, onClick: function() {}});
	for( var n=0; n < instanceOne.imagesDiv.childNodes.length; n++ ) {
		instanceOne.imagesDiv.childNodes[n].onmouseup = function() { showAbout(this.url); };
	}
	instanceOne.handleMouseWheel = function(delta) {};
});

function showAbout(id)
{
	var desc = document.getElementById( 'teamdesc' );
	var cnt = 0;
	if( !desc ) return;

	for( var n=0; n < desc.childNodes.length; n++ )
	if( desc.childNodes[n].nodeName == 'DIV' ) {
		desc.childNodes[n].style.display = id==cnt ? 'block' : 'none';
		cnt++;
	}
}

