/*
Fading Scroller- By DynamicDrive.com
For full source code, 100's more DHTML scripts, and TOS,
visit http://www.dynamicdrive.com
*/
var delay=2000 //set delay between message change (in miliseconds)
var fcontent=new Array()
begintag='<font face="verdana">' //set opening tag, such as font declarations
fcontent[0]='<a href="http://www.my-it-Solutions.com/frequently_asked_questions.html">Questions and Answers</a><br>'
fcontent[1]='<br><center><a href="http://www.rhondascards.com" target="_blank"><img src="images/cards3.jpg" border="1"></a><br><br><a href="http://www.ryze.com/go/MyITSolutions"><img src="images/imonryze.jpg" height=18 width=66></a></center>'
fcontent[2]='<a href="http://www.my-it-Solutions.com/frequently_asked_questions.html"><b>Network Services</b></a> <br>We provide complete network services to small businesses and home offices. <br> We specialize in computer networks, including design, design and build and debug computer networks, organize data and files, handle Internet connections and network security.'
fcontent[3]='<a href="http://www.my-it-Solutions.com/web_design_services.html" target="_blank"> <b>Web Design</b></a> <br>Having our experienced web designers on your team means we can not only design your website or redesign it, but can devise strategies to make your vision work in the Web environment.'
fcontent[4]='<br><div align="center"><a href="/activate.pl" target="_blank"><img src="images/dialup-logo.png" width="170" height="80" border="0"></a><br><font face="Arial, Helvetica, sans-serif">Click for $9.95 Dialup Unlimited. </font></div>'
closetag='</font>'
var fwidth=170 //set scroller width
var fheight=250 //set scroller height
///No need to edit below this line/////////////////
var ie4=document.all&&!document.getElementById
var ns4=document.layers
var DOM2=document.getElementById
var faderdelay=0
var index=0
if (DOM2)
  faderdelay=2000
//function to change content
function changecontent(){
  if (index>=fcontent.length)
    index=0
      if (DOM2){
        document.getElementById("fscroller").style.color="rgb(255,255,255)"
        document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
        colorfade()
      }
      else if (ie4)
        document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag
      else if (ns4){
        document.fscrollerns.document.fscrollerns_sub.document.write(begintag+fcontent[index]+closetag)
        document.fscrollerns.document.fscrollerns_sub.document.close()
      }
    index++
    setTimeout("changecontent()",delay+faderdelay)
}
// colorfade() partially by Marcio Galli for Netscape Communications.  ////////////
// Modified by Dynamicdrive.com
frame=20;
hex=255  // Initial color value.
function colorfade() {	         	
// 20 frames fading process
  if(frame>0) {	
    hex-=12; // increase color value
    document.getElementById("fscroller").style.color="rgb("+hex+","+hex+","+hex+")"; // Set color value.
    frame--;
    setTimeout("colorfade()",20);	
  }else{
    document.getElementById("fscroller").style.color="rgb(0,0,0)";
    frame=20;
    hex=255
  }   
}
if (ie4||DOM2)
document.write('<div id="fscroller" style="width:'+fwidth+';height:'+fheight+';padding:2px"></div>')
//Following line moved to html body tag to allow for multiple js' on a single page//
//window.onload=changecontent//

