/*
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="http://www.my-it-Solutions.com/images/cards3.jpg" border="1"></a><br><br><a href="http://www.ryze.com/go/MyITSolutions"><img src="http://img.ryze.com/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.NoMoreFilingCabinets.com" target="_blank"> <b>No More Filing Cabinets</b></a> <br>What if you had a disaster. How would you recover? Do you have a back up of all your papers? If you loose a file, can you recreate it? How long would it take? How much money would it take to do so? If the HIPAA law pertains to your industry, do you have a strategy plan? No More Filing Cabinets can help by partnering up with you.

Everyone knows what its like to search endlessly for something you know exists, yet can not find. Whether its a letter, an invoice, a receipt, or any other document, if you can't find it, you might as well not have it. We can convert a backfile of documents and clients can proceed with ongoing work.'
</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//


