function initCitat() {
	fadeIn( document.getElementById( 'citat' ), 5000, null, onFadeIn );
}

function onFadeIn() {
	setTimeout( function() {
		fadeOut( document.getElementById( 'citat' ), 5000, null, onFadeOut );
	}, 25000 );
}

function onFadeOut() {
	location.href = document.getElementById('meniuPrincipal').getElementsByTagName('a')[0].href;
}
