/**********************************************************************************
News-Ticker
*********************************************************************************/

var laufschrift = " +++  for those who love the great outdoors and the good times. +++  for those who love the great outdoors and the good times. +++  for those who love the great outdoors and the good times.";
var start = 0;
var stop = laufschrift.length;

function lauftext() {
document.ticker.ticker.value = "" + laufschrift.substring(start,stop) + " " + laufschrift.substring(0,start);
start++;
if(start >= stop) { start = 0; }
setTimeout("lauftext()", 180);
}