/*
Cross browser marquee script II-
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/
//Specify the marquee contents 

var marqueecontents='<font face="Arial"> <strong> <big> <center><hr/><br/>';

marqueecontents=marqueecontents + '<font color="#FF3300">Domain For Sale!<br/> Registered until 2015!</font><br/><br/>';
marqueecontents=marqueecontents + '<font size="2">This domain is available for purchase to anyone that wishes to purchase it (except maybe Barefoot Bay Recreation District). </font><br/>';
marqueecontents=marqueecontents + '<font size="2">If interested please send a request in the contact us form below.</font><br/>';
marqueecontents=marqueecontents + '<br/><hr/><br/>';


//marqueecontents=marqueecontents + '<font color="#FF3300">Do not know if any of you are aware of this very different veterans group - National Veterans Homeless Support. Their main focus is Brevard county but also do work in other areas of Central FL. They have just run into some major difficulties, so I thought I would try to help by spreading the word.</font><br/><br/>';
//marqueecontents=marqueecontents + '<font size="2">Website: <a href="http://www.nvhs.us/index.html">www.nvhs.us</a> Facebook page: <a href="http://www.facebook.com/VeteranSupport">facebook.com/VeteranSupport</a></font><br/>';
//marqueecontents=marqueecontents + '<font size="2"> From Facebook this morning: Good Morning All... Tragedy has struck our operations at NVHS this week. One of the struggles we fight is the steady cost of fueling & the upkeep of our Search & Rescue vehicles- and NOW, devastatingly, BOTH VANS (Our LIFELINES to those in need) ARE DOWN... and this:</font><br/><br/>';
//marqueecontents=marqueecontents + '<font size="2">As a non-profit funded by the community we are well aware of the economic times and the hardships that All are facing.</font><br/>';
//marqueecontents=marqueecontents + '<font size="2">HOW YOU CAN HELP:</font><br/>';
//marqueecontents=marqueecontents + '<font size="2">If You know an organization that has fleet Vans that may be coming up to be replaced and may be able to donate some please email <a href="mailto:Beth.McKenzie@ItsCardinal.com">Beth.McKenzie@ItsCardinal.com</a> to submit the info as a lead. We will follow up, and need not include your name.</font><br/><br/>';
//marqueecontents=marqueecontents + '<font size="2">If you know someone who deals in transmissions and motors, same as above. ... See More</font><br/><br/>';
//marqueecontents=marqueecontents + '<font size="2">If you know any organization or person who pops into your mind that may be in position to help, please send as a lead to the email above.</font><br/>';
//marqueecontents=marqueecontents + '<font size="2">As is, we need $14,000 to get back in action on our own.</font><br/>';
//marqueecontents=marqueecontents + '<font size="2">Please pray, and keep your eyes and ears open for an opportunity or door God may hold open for NVHS, through YOU! God works in mysterious ways- we appreciate your time and support. May GOD BLESS You & NVHS as we serve the Vets!</font><br/>';

//marqueecontents=marqueecontents + '<font color="#FF3300">CCOBB Town Hall Meeting!</font><br>';
//marqueecontents=marqueecontents + '<font size="2">March 26, 2007 at<br/> 7:00 P.M. at building A!</font><br/>';
//marqueecontents=marqueecontents + '<br/><hr/><br/>';

//marqueecontents=marqueecontents + '<font color="#FF3300">New!<br/> DVDs will now be made available to those that want one from this site.</font><br>';
//marqueecontents=marqueecontents + '<font size="2">DVDs of Barefoot Bay Recreation District meetings will be available for $2.00 for those that want their own DVD of a board meeting.The charge is for pick-up only and must be ordered in advance.</font><br/>';
//marqueecontents=marqueecontents + '<br/><hr/><br/>';

marqueecontents=marqueecontents + '<center/> <big/><strong/><font/>';

// ************************************************************************
// ************************************************************************
// DO NOT ALTER ANYTHING BELOW THIS LINE
// ************************************************************************
// ************************************************************************

        //scroller width
        var swidth=100;
        //scroller height
        var sheight=250;
        //background color
        var sbcolor='red';
        //scroller's speed
        var sspeed=3;
        var msg=''
        //Your messages go below:

msg=marqueecontents;

        //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()
                }
        }

