<!-- // Hide script from old browser
	var delay = 8000; //set delay
	var maxsteps=50; // number of steps
	var stepdelay=40; // time of a single step
	var startcolor= new Array(255,255,204); // start color (red, green, blue)
	//var startcolor= new Array(0,0,0); // start color (red, green, blue)
	var endcolor=new Array(86,112,99); // end color (red, green, blue)

	var fcontent=new Array();
	begintag='<div style="border:1px dashed #D5C4A1; padding:10px; margin:10px; ">'; //set opening tag, such as font declarations
	
	fcontent[0]="<i>&quot;The Plant People's unique skills in creating beautiful settings in our office with the use of plants has not only impressed our staff, but has amazed our patients.&quot;</i><br>-Steve Querio, President Fox River Health Center, S.C.";
	fcontent[1]="<i>&quot;I was absolutely amazed at the difference plants made in my office!  My staff is happier, my patients love how beautiful the waiting area is, and we don't have to do any of the work!&quot;</i><br>-Mark A.  Brodhagen, D.D.S, Brodhagen Dental Care";
	fcontent[2]="<i>&quot;I have been very pleased, they are a delight to work with and are always very accommodating to our requests and needs.&quot;</i><br>-Margaret Meyers, Executive Asst. /Green Bay Packer Corp.";
	fcontent[3]="<i>&quot;It is refreshing to be working with a company who takes such pride in their work.&quot;</i><br>-Lynn-Ricert Steeno, Department Adm. /Schneider National";
	
	closetag='</div>';

	var index = Math.floor(Math.random()*4);

	var fwidth='515px'; //set scroller width
	var fheight='120px'; //set scroller height
	var fadelinks=1;  //should links inside scroller content also fade like text? 0 for no, 1 for yes.
	
	var ie4=document.all&&!document.getElementById;
	var DOM2=document.getElementById;
	var faderdelay=0;

	function changecontent(){
  		if (index>=fcontent.length)
    		index=0
  		if (DOM2){
    		document.getElementById("fscroller").style.color="rgb("+startcolor[0]+", "+startcolor[1]+", "+startcolor[2]+")"
    		document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
    			if (fadelinks)
      				linkcolorchange(1);
    		colorfade(1, 15);
  		}
  		else if (ie4)
    		document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag;
  		index++
	}

	function linkcolorchange(step){
  		var obj=document.getElementById("fscroller").getElementsByTagName("A");
  		if (obj.length>0){
    			for (i=0;i<obj.length;i++)
      				obj[i].style.color=getstepcolor(step);
  		}
	}

	var fadecounter;
	function colorfade(step) {
  		if(step<=maxsteps) {	
    		document.getElementById("fscroller").style.color=getstepcolor(step);
    		if (fadelinks)
      			linkcolorchange(step);
    		step++;
    		fadecounter=setTimeout("colorfade("+step+")",stepdelay);
  		}else{
    		clearTimeout(fadecounter);
    		document.getElementById("fscroller").style.color="rgb("+endcolor[0]+", "+endcolor[1]+", "+endcolor[2]+")";
    		setTimeout("changecontent()", delay);
		}   
	}

	function getstepcolor(step) {
  		var diff
  		var newcolor=new Array(3);
  		for(var i=0;i<3;i++) {
    		diff = (startcolor[i]-endcolor[i]);
    		if(diff > 0) {
      			newcolor[i] = startcolor[i]-(Math.round((diff/maxsteps))*step);
    		} else {
      			newcolor[i] = startcolor[i]+(Math.round((Math.abs(diff)/maxsteps))*step);
    		}
  		}
  		return ("rgb(" + newcolor[0] + ", " + newcolor[1] + ", " + newcolor[2] + ")");
	}

	if (ie4||DOM2)
  		document.write('<div id="fscroller" style="width:'+fwidth+';height:'+fheight+'"></div>');

	if (window.addEventListener)
		window.addEventListener("load", changecontent, false)
	else if (window.attachEvent)
		window.attachEvent("onload", changecontent)
	else if (document.getElementById)
		window.onload=changecontent
// End Hide -->