var swidth=0;
var sheight=0;
var sspeed=1;
var msg=''
msg +=

    '<div>            <b>Pressearchiv 2012:</b>'+                             
    '<p>              General Anzeiger 12.02.2012<br><a class="unter_norm" href="/?page=presse_12#12.02.12">BIS Stendal ausgezeichnet</a>'+
    '</p>'+
    '<p>              Altmark Zeitung 10.02.2012<br><a class="unter_norm" href="/?page=presse_12#10.02.12">"Müssen die Menschen aus Bittstellung holen"<br>Nachbarschaftshilfen: Mohr und Jungblut treiben Projekte voran</a>'+
    '</p>'+
    '</div>'+
    '<div>            <b>Bildergalerie:</b>'+                             
    '<p>              <a class="unter_norm" href="/bilder.php?b_page=b_fuer_mit">Projekt Generationen miteinander/Füreinander</a>'+
    '</p>'+
    '<p>              <a class="unter_norm" href="/bilder.php?b_page=b_bis">Preisverleihung "Berliner Gesundheitspreis"</a>'+
    '</p>'+                         
    '</div>'+
    '<div>            <b>Downloadbereich:</b>'+                             
    '<p>              <a class="unter_norm" href="/?page=downloadbe">Newsletter für das 1. Quartal (05.01.2012)</a>'+
    '</p>'+
    '</div>'+
    '<div>            <b>F&ouml;rderprogramme:</b>'+                             
    '<p>              <a class="unter_norm" href="/?page=foerderpro#8">Die Initiative<br>"Alter schafft Neues"</a>'+
    '</p>'+                         
    '</div>'+
    '<div>            <b>Kooperations- und Netzwerkpartner:</b>'+                             
    '<p>              <a class="unter_norm" href="/?page=kooperatio">Hochschule Magdeburg/Stendal</a>'+
    '</p>'+
    '</div>'+
    '<div>            <b>Ehrungen:</b>'+                             
    '<p>              <a class="unter_norm" href="?page=wettbewerb">Verleihung der PHINEO - Qualitätsempfehlung</a>'+
    '</p>'+                         
    '</div>';

var resumesspeed=sspeed
function start() {
if (document.all) iemarquee(ticker);
else if (document.getElementById)
ns6marquee(document.getElementById('ticker'));
}
function iemarquee(whichdiv){
iediv=eval(whichdiv)
sheight += 50;
iediv.style.pixelTop=sheight
iediv.innerHTML=msg 
sizeup=iediv.offsetHeight
ieslide()
}
function ieslide(){
if (iediv.style.pixelTop>=sizeup*(-1)){
iediv.style.pixelTop-=sspeed
setTimeout("ieslide()",100)
}
else{
iediv.style.pixelTop=sheight
ieslide()
}
}
function ns6marquee(whichdiv){
ns6div=eval(whichdiv)
sheight += 50;
ns6div.style.top=sheight + "px";
ns6div.innerHTML=msg
sizeup=ns6div.offsetHeight
ns6slide()
}
function ns6slide(){
if (parseInt(ns6div.style.top)>=sizeup*(-1)){
theTop = parseInt(ns6div.style.top)-sspeed
ns6div.style.top = theTop + "px";
setTimeout("ns6slide()",100)
}
else {
ns6div.style.top = sheight + "px";
ns6slide()
}
}
