//scroller width
var swidth=197;

//scroller height
var sheight=250;

//background color
var sbcolor='#ffffff';

//scroller's speed
var sspeed=3;

var msg=''

//Your messages go below:


msg +=
    '<ul><li><a href="news.php#classic" title="">Classic Financial Website goes live - 13/05/2009</a></li>'+
    '<li>Nero Networks has designed a simple but eye catching website for Classic Finanical Services Ltd.</li>'+
    '<li> </li></ul>'+

    '<ul><li></li></ul>'+

    '<ul><li><a href="news.php#doublel" title="">DoubleL Concrete choose Nero Networks - 24/03/2009</a></li>'+
    '<li>DoubleL Concrete has chosen Nero Networks as their network support provider.</li>'+
    '<li> </li></ul>'+

    '<ul><li></li></ul>'+

    '<ul><li><a href="news.php#webspy" title="">Irelands FIRST official WebSpy software reseller - 27/02/2009</a></li>'+
    '<li>Nero Networks has reached an agreement for us to become WebSpy’s first official reseller in Ireland.</li>'+
    '<li> </li></ul>'+

    '<ul><li></li></ul>'+

    '<ul><li><a href="news.php#emco" title="">Irelands FIRST official EMCO software reseller - 26/01/2008</a></li>'+
    '<li>We have recently signed up to be Ireland’s first official EMCO Software partner.   </li>'+
    '<li> </li></ul>'+

    '<ul><li></li></ul>'+

    '<ul><li><a href="news.php#nero1" title="">Nero Notice - 10/01/2009</a></li>'+
    '<li>We’ve fallen behind recently in keeping you up to date with our latest news but this doesn’t mean we haven’t been busy but just the opposite!!!</li>'+
    '<li> </li></ul>'+

    '<ul><li></li></ul>'+

    '<ul><li><a href="news.php#microsoft" title="">Nero partners with Microsoft - 10/06/2008</a></li>'+
    '<li>Nero Networks Limited are delighted to announce our participation in the Microsoft Partner Program.</li>'+
    '<li> </li></ul>'+

    '<ul><li></li></ul>'+

    '<ul><li><a href="news.php#del" title="">Nero partners with Dell - 01/03/2008</a></li>'+
    '<li>Nero Networks Limited are pleased to announce our participation in the Dell Partner Direct Program.</li>'+
    '<li> </li></ul>'+

    '<ul><li></li></ul>'+

    '<ul><li><a href="news.php#allincare2" title="">Minister for Health and Children launches website - 01/02/2008</a></li>'+
    '<li>Minister for Health and Children, Mary Harney today launched the All In Care website that was design and developed by Nero Networks.</li>'+
    '<li> </li></ul>'+

    '<ul><li></li></ul>'+

    '<ul><li><a href="news.php#kks" title="">Kontinental Kitchen Supplies signs up Nero Networks - 28/01/2008</a></li>'+
    '<li>Kontinental Kitchen Supplies have decided to use Nero Networks as their support provider.  </li>'+
    '<li> </li></ul>'+

    '<ul><li></li></ul>'+

    '<ul><li><a href="news.php#allincare" title="">All In Care choose Nero Networks - 14/11/2007</a></li>'+
    '<li>All In Care has chosen Nero Networks as the company to design and develop their new website.</li>'+
    '<li> </li></ul>'+

'';

//End of your messages
// Begin the ticker code

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 += 10;
        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 += 10;
        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()
        }
}

