jQuery(document).ready(function($) {
window.setTimeout("nextText()",2000);
});

var texte = new Array();
texte[0]='<h1>Sch&ouml;n, dass Sie hier sind.</h1>';
texte[1]='<h1>Freut uns.</h1>';
texte[2]='<h1><img border="0" width="100" height="80" alt="" src="uploads/pics/logo_hk_klein.png" style="margin-bottom: 26px;"><br />F&uuml;r Hoteliers: <a href="http://www.suite-life.com/home.html" title="suite-life.com" class="internal-link" style="text-decoration: none;">suite-life.com</a><br>F&uuml;r alle anderen: <a href="http://www.hepundko.com/home.html" title="Hep &amp; Ko" class="internal-link" style="text-decoration: none;">hepundko.com</a></h1>';
var counter=0;
function nextText(){
	jQuery('.content_normal').fadeOut('slow', function() {
		jQuery('.content_normal').html(texte[counter]).fadeIn('slow', function() {
			counter++;
			if (counter!==texte.length) window.setTimeout("nextText()",1500);
		});
	});
}


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

});
