// JavaScript Document

 //scroller width
        var swidth=240;

        //scroller height
        var sheight=170;

        //BACKground color
        var sbcolor='';

        //scroller's speed
        var sspeed=2.5;

        var msg=''

        //Your messages go below:


        msg +=
        
            '<ul><li>Jonesco Downloads</li>'+
            '<li><a href="catalogues.htm" title="Catalogues">Download all three catalogues here!</a></li>'+
			'<li><a href="leaflets.htm" title="Leaflets &amp; Posters">Leaflets &amp; Posters</a></li>'+
			'<li><a href="../en/pdf/colours.pdf" title="Colour Chart PDF" target="_blank">Colour Chart</a></li>'+
			'<li><a href="../en/pdf/Spill-Flowchart_UK.pdf" target="_blank" title="Jonesco Spill Containment Product Flowchart">Spill Containment Flowchart</a></li>'+
            '<li> </li></ul>'+ 
			
			'<ul><li></li></ul>'+
            
            '<ul><li>New Products</li>'+
			'<li><a href="../en/pdf/JBS500-lft_LR.pdf" title="JBS500 - Storage box" target="_blank">JBS500 - Storage Box</a></li>'+
			'<li><a href="../en/spill-trays.htm" title="Spill / Drip Trays">Spill / Drip Trays</a></li>'+
			'<li><a href="../en/pdf/JBS130-lft.pdf" title="JBS130 - Storage box" target="_blank">JBS130 - Storage Box</a></li>'+
            '<li><a href="../en/ibc-pallets.htm" title="Single/Double IBC Spill Pallets">IBC Spill Pallets</a></li>'+
			'<li><a href="../en/ibc-pallets.htm" title="IBC Dispenser">IBC Dispenser</a></li>'+
			'<li> </li></ul>'+ 
			
			'<ul><li></li></ul>'+
            
            //'<ul><li>Coming Soon</li>'+
            //'<li><a href="../en/latest-news.htm" title="IBC Dispenser">IBC Dispenser</a></li>'+
			//'<li> </li></ul>'+ 
			
			'<ul><li></li></ul>'+ 
			
			'<ul><li>Video</li>'+
            '<li><a href="../en/drumkart.htm" title="Watch DrumKart Video">DrumKart</a></li>'+
			'<li><a href="../en/ibc-pallets.htm" title="Watch IBC Spill Pallet Video">IBC Spill Pallet</a></li>'+
			'<li><a href="../en/workfloors.htm" title="Watch the Workfloor Video">Workfloor</a></li>'+
			'<li> </li></ul>'+ 
			
			'<ul><li></li></ul>'+ 
            
            '<ul><li>Exhibitions</li>'+
			'<li>Visit us at:</li>'+
			'<li><a href="http://www.iaa.de/index.php?id=besucher&L=1" target="_blank" title="IAA 2010">IAA 2010 (23.09.-30.09.10)</a></li>'+
			'<li><a href="http://www.pollutec.com/site/GB,I5166.htm?KM_Session=b0961f3e80a7737d5697f0a13f4b32f7" target="_blank" title="Pollutec 2010">Pollutec 2010 (30.11.-03.12.10)</a></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 pageScroll() {
    	window.scrollBy(0,50); // horizontal and vertical scroll increments
    	scrolldelay = setTimeout('pageScroll()',100); // scrolls every 100 milliseconds
}

