/* zobrazovanie a skryvanie faq bloku */
/* http://www.prototypejs.org/ */
function showFaq(e){		
	$(e).toggle();
	$('footer').setStyle({
  		width: '995px',
		position: 'absolute',
		left: 0,
		bottom: 0,	
		backgroundImage: 'url(/styles/images/footer.gif)',
		backgroundRepeat: 'no-repeat',
		lineHeight: '2em',
		height: '75px',
		overflow: 'hidden'
	});
}
