// JavaScript Document

       //scroller width
        var swidth=200;

        //scroller height
        var sheight=40;

        //background color
        var sbcolor='';

        //scroller's speed
        var sspeed=2;

        var msg=''

        //Your messages go below:

        msg +=
			'<ul><li>February 20, 2012: SB127 is Now as Unconstitutional as HB624 <a href="http://www.rsolvirginia.org/news/bulletin-board/posting-469/">(See Bulletin Board Posting #469)</a></li></ul>'+
		
			'<ul><li>February 14, 2012: HB973-Delegates Bell, Albo, Helsel, Merrick and Ramadan are Mandating Juveniles to 25 years in Prison for First Offense. Contact Your Senator Today! <a href="http://www.rsolvirginia.org/news/bulletin-board/posting-465/">(See Bulletin Board Posting #465)</a></li></ul>'+
			
			'<ul><li>February 14, 2012: HB624 and SB127 Mandating Juveniles to Register for Life Should NOT Pass Through The Second Chambers! Delegates, Albo, Helsel, O\'Bannon & Ramadan. Senators Stanley & Norment. <a href="http://www.rsolvirginia.org/news/bulletin-board/posting-467/">(See Bulletin Board Posting #467)</a></li></ul>'+
			
			'<ul><li>February 11, 2012: U.S. Sentencing Commission Will Hold Public Hearings on February 15 & 16 2012 on Federal Child Pornography Crimes in Washington, DC. <a href="http://www.rsolvirginia.org/news/bulletin-board/posting-463/">(See Bulletin Board Posting #463)</a></li></ul>'+
			
			'<ul><li>February 9, 2012: HB1271- Its Real Intention is Crystal Clear! To Save a Dollar on Civil Commitment, the Commonwealth Will Just Imprison Them for Life, it is Cheaper! <a href="http://www.rsolvirginia.org/news/bulletin-board/posting-460">(See Bulletin Board Posting #460)</a></li></ul>'+
		
			'<ul><li>February 8, 2012: SB436 Has Been Amended, Removing Juveniles! <a href="http://www.rsolvirginia.org/news/bulletin-board/posting-459">(See Bulletin Board Posting #459)</a></li></ul>'+

			'<ul><li>February 8, 2012: SB420 Has Been Brought Back, But is Just a Shell <a href="http://www.rsolvirginia.org/news/bulletin-board/posting-458">(See Bulletin Board Posting #458)</a></li></ul>'+

			'<ul><li>February 7, 2012: The House Criminal Courts of Justice Sub-Committee Killed HB413 and HB416 in Less Than 20 Minutes <a href="http://www.rsolvirginia.org/news/bulletin-board/posting-454">(See Bulletin Board Posting #454)</a></li></ul>'+
		
			'<ul><li>February 2, 2012: Good News on HB1178! <a href="http://www.rsolvirginia.org/news/bulletin-board/posting-452">(See Bulletin Board Posting #452)</a></li></ul>'+
		
			'<ul><li>January 24, 2012: SB420 was Killed for the Fourth Year <a href="http://www.rsolvirginia.org/news/bulletin-board/posting-442/">(See Bulletin Board Posting #442)</a></li></ul>'+

			'<ul><li>January 12, 2012 HB29 and HB30 Budget Bills Go to the Appropriations Committee <a href="http://www.rsolvirginia.org/news/bulletin-board/posting-432/">(See Bulletin Board Posting #432)</a></li></ul>'+
						
			'<ul><li>November 19, 2011: Only 73 of the 436 civil petitions to commit Virginian\'s as SVP\'s by the OAG from 2003 until September 2011 were finalized within the 210-day deadline set by lawmakers. <a href="http://www.rsolvirginia.org/news/bulletin-board/posting-410/">(See Bulletin Board Posting #410)</a></li></ul>'+

			'<ul><li>November 14, 2011 JLARC Releases Their Report on Civil Commitment for SVP\'s in Virginia <a href="http://www.rsolvirginia.org/news/bulletin-board/posting-409/">(See Bulletin Board Posting #409)</a></li></ul>'+
			
			'<ul><li>In Virginia there are Many Groups that Meet to Discuss Legislation, Studies and Polices. To Know Which Group is Meeting on What Issues and Where and When... <a href="http://www.rsolvirginia.org/va-public-meeting-schedules/">(Visit the Virginia Public Meeting Schedules Page)</a></li></ul>'+
		
			'<ul><li>If you do not know who your State representatives are go to, <a href="http://www.rsolvirginia.org/va-general-assembly/">http://www.rsolvirginia.org/va-general-assembly/</a></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 += 0;
                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 += 0;
                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()
                }
        }

        
