var infoVisible = false;

function selectProduct(id) {
	if ($('openingPic')) {
		$('openingPic').hide();
	}
    InterfaceUtil.showLayer('productDIV_'+id,'productDIV');
    closeInfo();
    infoVisible = false;
    currentProductId = id;
    $('selectedProductId').value = id;
    if ($('infoLayer')) {
    	$('infoLayer').setStyle( {
			top: $('productDIV_'+id).down('.imageLarge').cumulativeOffset().top - 110 + 'px'
		});
	}
}

function toggleInfo() {
	$('infoLayer').toggle();
    if ($('infoLayer').visible()) {
        $$('.imageLarge').each(function(e) { e.hide(); });
        $('infoLayer').show();
        var scrollDiv = $('infoLayer').down('.textWithPosition');
        scrollDiv.setStyle({
			width:	'250px',
			height : '412px'
		});
		fleXenv.reInitialize(scrollDiv);         
    } else {
        closeInfo();
    }
}

Event.observe(document,'dom:loaded',function() {
	if (!window.showInfo) closeInfo();	
})

function closeInfo() {
    if ($('infoLayer')) {
		$('infoLayer').hide();
	}
    $$('.imageLarge').each(function(e) { e.show(); });
} 

function hideProductDivs() {
    $$('.productDIV').each(function(e) { e.hide(); });
}
