        //scroller width
        var swidth=500;

        //scroller height
        var sheight=500;

        //background color
        var sbcolor='#dddddd';

        //scroller's speed
        var sspeed=9;

        var msg=''

        //Your messages go below:


        msg +=
         	'<ul><li><a href="/global_docs/forms/allforms/UCorp_FY0708_YearEnd_Calendar.pdf">UCorp FY0708 YearEnd Calendar</a></li>' +
       		'<li>&nbsp;</li><li>&nbsp;</li><li>&nbsp;</li></ul>'+
        
            '<ul><li>Direct Deposit - Contact <a href="/contact/employee.jsp">Mark Angstman</a>&nbsp;about adding direct deposit&nbsp;for your&nbsp;<U>benefited</U> employees.</li>' + 
            '<li>&nbsp;</li><li>&nbsp;</li><li>&nbsp;</li></ul>'+                     
            
            '<ul><li>On January 28, 2008, all 2007 W-2\'s have been mailed to the address on file.</li>'+
            '<li>&nbsp;</li><li>&nbsp;</li><li>&nbsp;</li></ul>'+   
            
			'<ul><li>Village Fitness Center now open and serving SFSU students, faculty, staff and alumni.&nbsp; Get a free One Trial Pass, <a href="/global_docs/forms/allforms/village-fitness.pdf">click here</a> to download the brochure.</li>' + 
			'<li>&nbsp;</li><li>&nbsp;</li><li>&nbsp;</li></ul>'+ 
		
			'<ul><li>Subway &amp; The Village Market and Pizzeria <br />Now Open!&nbsp; Subway &amp; The Village Market and Pizzeria will be located in The Village at Centennial Square.</li>' + 
        	'<li>&nbsp;</li><li>&nbsp;</li><li>&nbsp;</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()
                }
        }