        var swidth=275;
        var sheight=200;
        var sbcolor='';
        var sspeed=1;
        var msg=''
        msg +=
		
//////////////////////DO NOT EDIT ABOVE THIS LINE//////////////////////	
		
// Below is where you will update the information/message on the scrolling ticker area for all pages.  There are 3 messages total and each has 3 parts (link, heading, text)

//When updating each message below, the 1st item is the link (the full website address), 2nd the heading for that link (how you want it to read and what users click on to go to link), and 3rd the actual text that appears (under the heading).

//Message #1 & #2 links will open in a new window (outside of your site). Message #3 link will open within the current window and should be used for internal links only (inside your site).		
		
		
//MESSAGE #1------------------------------------------------------------------------------------------------------ 
		
		   		'<ul><li><a href="'+
				//----START #1 LINK  
				//(change link below, make sure single quote mark ' goes in front and back)
			
			
'http://www.mirasolfafco.com/service/' 						//<-------#1 LINK 


			     //----END #1 LINK
			     +'" target="_self">'+
				 //----START #1 HEADING 
				//(change heading below, make sure single quote mark ' goes in front and back)
				
				
'Solar Repair Service'										//<-------#1 HEADING


				//----END #1 HEADING
				+'</a></li><li>'+
		   		//----START #1 TEXT
				//(change TEXT below, make sure single quote mark ' goes in front and back)
		
		
'Mirasol FAFCO Solar offers service and repairs for your custom solar system.  Maintenance to your system can add life to the system and keep it performing longer and more efficiently.  Maximize your energy bill and get the most out of your investment.  Contact a Mirasol Representative today to find out how we can save you even more money!'										//<-------#1 TEXT


				//----END #1 TEXT

				
									
//MESSAGE #2--------------------------------------------------------------------------------------------------
 				
				+'</li></ul><br><br><ul><li><a href="'+                     
            	//----START #2 LINK  
				//(change link below, make sure single quote mark ' goes in front and back)
			
			
'http://www.dsireusa.org/incentives/index.cfm?state=us&re=1&EE=1'		//<-------#2 LINK 


				//----END #2 LINK
				+'" target="_blank">'+
				//----START #2 HEADING 
				//(change heading below, make sure single quote mark ' goes in front and back)

				
'Federal Rebates Up To 30% Off'									//<-------#2 HEADING


				//----END #2 HEADING
				+'</a></li><li>'+
				//----START #2 TEXT
				//(change TEXT below, make sure single quote mark ' goes in front and back)
				
				
'DSIRE - Database of State Incentives for Renewable Energy. Check out the incentives the federal government is offering towards purchase of solar or renewable energy equipment.  Ask a Mirasol representative if you have questions or for more information.'										//<-------#2 TEXT


				//----END #2 TEXT

				

//TMESSAGE #3--------------------------------------------------------------------------------------------------				
				
				+'</li></ul><br><br><ul><li><a href="'+
				//----START #3 LINK  
				//(change link below, make sure single quote mark ' goes in front and back)
				
				
'http://www.mirasolfafco.com/contact/newsletter.php'						//<-------#3 LINK 

				
				//----END #3 LINK
				+'" target="_self">'+
				//----START #3 HEADING 
				//(change heading below, make sure single quote mark ' goes in front and back)
				
			
'Sign Up For Savings'										//<-------#3 HEADING


				//----END #3 HEADING
				+'</a></li><li>'+
				//----START #3 TEXT
				//(change TEXT below, make sure single quote mark ' goes in front and back)
				
				
'Signup for our Mirasols monthly environmental newsletter.  Stay in tune with updates in renewable energy, solar product updates, and information to help you save $$$$ with solar technology brought to you by Mirasol FAFCO Solar.'				//<-------#3 TEXT


				//----END #3 TEXT
				+'</li></ul>'+  
                '';

//END TEXTS--------------------------------------------------------------------------------------------------

		
//////////////////////DO NOT EDIT BELOW THIS LINE//////////////////////			
		
		

        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 += 10;
                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()",75)
                }
                else{
                        iediv.style.pixelTop=sheight
                        ieslide()
                }
        }
        
        function ns6marquee(whichdiv){
                ns6div=eval(whichdiv)
                sheight += 10;
                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()",75)
                }
                else {
                        ns6div.style.top = sheight + "px";
                        ns6slide()
                }
        }
