var newsSpeed=4000;
var newsStart=3000;
var globalElem;

// first news must be the same as in startPage.php
var newsTxt = new Array("<b>Endlich auch in K&ouml;ln</b>- Die Rollenden Friseure - K&ouml;ln. <a href='/Koeln' tile='Friseur K&ouml;ln>Erleben Sie die neuen Friseure f&uuml;r K&ouml;ln</a>.","Informieren Sie sich &uuml;ber unseren <a href='/Brautservice' tile='Hochsteckfrisur'>mobilen Brautservice</a> auf Hochzeitsmessen. Bspw. in Berlin, Hannover, Karlsruhe.", "Den Friseur <strong>24 Stunden und 7 Tage die Woche buchen.</strong> Jetzt gleich online <a href='?action=termin' title='Zur Onlineterminvereinbarung'>Onlineterminvereinbarung</a>","Bestellen Sie Kadus Shampoos und <strong>Stylingprodukte online, versandkostenfrei zu Ihrem Termin</strong> <a href='/onlineshop/' title='Kostenlose Lieferung von Friseurprodukten'>Friseurlieferung</a>");

window.onLoad=setTimeout('initNews();', newsStart);

function initNews(){
  globalElem=document.getElementById("newsContent");
  setInterval('runNews();', newsSpeed);
}

var actNews=0;
function runNews(){
  if(actNews<=(newsTxt.length)-2){
    globalElem.innerHTML=newsTxt[actNews];
    actNews++;
  }else{
    globalElem.innerHTML=newsTxt[actNews];
    actNews=0;
  }
}