function viewHelper() {
	duration = 5;
	for (i=1;i<8;i++) {
		if ($('quote-str' + i)) {
			delay = (duration * (i - 1) - 2);
			
			new Effect.Morph('quote-str' + i, {
				style: {
					width: '235px'
				},
				duration: duration,
				delay: delay
			});
		}
	}
}

function showBanner() {
	var intro = readCookie('show_intro');

	if (intro==null || intro!="no") {
		setTimeout("showLightWindow('/uploads/images/banner-front.jpg')",700);
		createCookie('show_intro','no'); 
	}
}

function showhide_layer( id, idh )
{
	var blockId = gebi( id );
	var blockIdh = gebi( idh );
	blockId.style.display = '';
	blockIdh.style.display = 'none';
}
