<!--
var nextm=0;

function start_ticker(){
	if(jobs.length >= 1){ do_ticker(jobs[0], 0, 1); }
}

function do_ticker(text, pos, dir){
    //var out='<div>[&nbsp;<span style="color:#8B0000"><strong><span>'+text.substring(0, pos)+'</span></strong></span>&nbsp;]</div>';
	var out='<div><a class="ticker" href="http://www.jacbo.com/jacbo_com/home/stellenboerse/koeln/koeln.php">[&nbsp;'+text.substring(0, pos)+'&nbsp;]</a></div>';

    document.getElementById('jobticker_wrapped').innerHTML=out;

    pos+=dir;

    if(pos>text.length){ setTimeout('do_ticker(\''+text+'\','+pos+','+(-dir)+')', speed*100); }
    else{
        if(pos<0){
            if(++nextm>=jobs.length){ nextm=0; }

            text=jobs[nextm];
            dir=-dir;
        }
        setTimeout('do_ticker(\''+text+'\','+pos+','+dir+')', speed);
    }
}
// -->
