/* product finder */
var prodFinderVisible=false;
function toggleProductFinder() {
	Effect.toggle('product-finder', 'blind', {duration:0.25, afterFinish:swapProdFinderButton} );
}

function swapProdFinderButton() {
	if(prodFinderVisible) {
		Element.setStyle('prod-finder-btn', {background:'#fff url(http://www.htsprint.co.uk/images/show-prod-finder.gif) no-repeat'} );
		prodFinderVisible=false;
	} else {
		Element.setStyle('prod-finder-btn', {background:'#fff url(http://www.htsprint.co.uk/images/hide-prod-finder.gif) no-repeat'} );	
		prodFinderVisible=true;
	}	
}
