// JavaScript Document


//scroller width
        var swidth=423;

        //scroller height
        var sheight=85;

        //background color
        var sbcolor='#ABABAB';

        //scroller's speed
        var sspeed=1;

        var msg=''

        //Your messages go below:


        msg +=
        
            '<ul><li><a href="#" target="_self" title="">The Rhythms of Ireland returns - Coming soon to Germany!</a></li>'+
            '<li>The hit dance and musical sensation from Ireland is will be touring Germany in January 2011- stay tuned for more details.</li>'+
            '<li> </li></ul>'+                     
            
            '<ul><li><a href="#" target="_self" title="">Drum TAO a sell-out success!</a></li>'+
            '<li>The latest tour of Drum TAO around Australia has been met with critical acclaim and sell out shows across the country.</li>'+
            '<li> </li></ul>'+  
            
            '<ul><li><a href="#" target="_self" title="">Mother Africa explodes across Australia & NZ</a></li>'+
            '<li>Retfars newest show, Cirque Mother Africa has been such a success on the Gold Coast that it is now tourng across both Australia & New Zealand! See <a href="http://www.cirque-mother-africa.com">cirque-mother-africa.com</a> or <a href="www.ticketek.co.nz">ticketek.co.nz</a> for ticket details.  </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 += 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()
                }
        }
function MM_showHideLayers() { //v9.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) 
  with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}
