jQuery(document).ready(function($) {
window.setTimeout("nextText()",1000);
window.setTimeout("jQuery('#logoCon').fadeIn('slow')",1000);
});

var texte = new Array();
texte[0]='Gr&uuml;&szlig; Gott';
texte[1]='im Landhotel R&ouml;ssle.';
texte[2]='<a href="willkommen.html"><img id="introLogo" src="fileadmin/templates/images/roessle_logo_ani.png" width=250></a>';

var counter=0;
function nextText(){
	jQuery('#ani1').fadeOut('slow', function() {
		jQuery('#ani1').html(texte[counter]).fadeIn('slow', function() {
			counter++;
			if (counter!==texte.length) window.setTimeout("nextText()",1000);
		});
	});
}


jQuery(document).load(function($) {

});
