/***********************************************
* Fading Scroller- &copy; Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

var delay = 1000; //set delay between message change (in miliseconds)
var maxsteps=30; // number of steps to take to change from start color to endcolor
var stepdelay=30; // time in miliseconds of a single step
//**Note: maxsteps*stepdelay will be total time in miliseconds of fading effect
var startcolor= new Array(255,255,255); // start color (red, green, blue)
var endcolor=new Array(255,0,0); // end color (red, green, blue)

var fcontent=new Array();
begintag='<div style="font: normal 12px verdana; padding: 0px;">'; //set opening tag, such as font declarations
fcontent[0]="ready...";
fcontent[1]="graphic design";
fcontent[2]="professional logo design and branding";
fcontent[3]="internet consultation";
fcontent[4]="company intranet portals";
fcontent[5]="online customer support systems";
fcontent[6]="web content management systems";
fcontent[7]="discussion boards";
fcontent[8]="image galleries";
fcontent[9]="mailing list systems";
fcontent[10]="blogs";
fcontent[11]="online polls and surveys";
fcontent[12]="web calendars";
fcontent[13]="online project management";
fcontent[14]="online real estate listings";
fcontent[15]="online auction systems";
fcontent[16]="ad serving";
fcontent[17]="online educational course management systems";
fcontent[18]="online classified ads";
fcontent[19]="flexible hosting solutions";
fcontent[20]="great ideas!";
fcontent[21]="";
closetag='</div>';