quote1 = '<center><i>Lower Prices! Get great deals now!</i><br /><a href="http://www.gstile.com/overstock.html" target="_new" class="promoLink2">See our Overstock and Closeout sales!<br /><img src="images/for-fader.jpg" border="0" /></a></center>';

quote2 = '<center><i>Special Value!</i><br /><img src="images/bucket-web.jpg" border="0" alt="gst bucket o tools" /><br /> <a href="images/bucket-popup.jpg" rel="lightbox">Get your GST Bucket-O-Tools!</a></center>';

quote3 ='More images added to our Residential Idea <a href="http://www.gstile.com/new-bath-gallery.html" target="_new" class="promoLink2"><i>Gallery</i></a>!';

quote4 = '<a href="http://www.rockn-m.com/gst/tile-on-tv.wmv" class="promoLink2" target="_new"><center><img src="images/tile-on-tv.jpg" /><br /><i>Tile On TV!</i></a></center>';



delay = 6000;		// 1000 = 1 second


// * * * * * PLEASE DO NOT EDIT BEYOND THIS POINT * * * * *

hexinput = 255;
var inc = -1; //increment variable
fadeSpeed = 125; //higher number is slower, lower number is faster

function fadingtext(){
	if(hexinput>0) {	
		hexinput-=11; // increase color value
		document.getElementById("fader").style.color="rgb("+hexinput+","+hexinput+","+hexinput+")"; // Set color value.
		setTimeout("fadingtext()",fadeSpeed);	
	}
	else {
		//reset hex value
		hexinput = 191;
		}
}

function changetext()
{
	if (!document.getElementById) return
	inc++

	if (inc==0) { document.getElementById("fader").innerHTML= quote1; }
	if (inc==1) { document.getElementById("fader").innerHTML= quote2; }
	if (inc==2) { document.getElementById("fader").innerHTML= quote3; }
	if (inc==3) { document.getElementById("fader").innerHTML= quote4;
			inc=-1; }

	fadingtext();
	setTimeout("changetext()",delay);
}

window.onload=changetext;
