<!-- Original:  CodeLifter.com (support@codelifter.com) -->
<!-- Web Site:  http://www.codelifter.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();
var Txt = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'images/portfolio/flooring/FT3.jpg';
Pic[1] = 'images/portfolio/flooring/FT1.jpg';
Pic[2] = 'images/portfolio/flooring/FT7.jpg';
Pic[3] = 'images/portfolio/flooring/FT4.jpg';
Pic[4] = 'images/portfolio/flooring/FT5.jpg';
Pic[5] = 'images/portfolio/flooring/FT6.jpg';

Txt[0] = "This shower was old plastic enclosures. The existing shower was demolished completely. The Shower head was raised six inches and the enclosure completely rebuilt with a custom tile seat.<br><br><br>";
Txt[1] = "This first time home buyer was ecstatic when they found original hard wood flooring under the carpet. At first the floor appeared to be in unrepairable condition. However, with a lot of elbow grease, sanding, and a few coats of polyurethane, they were once again beautiful.<br><br>";
Txt[2] = "We can tile around any angle. This beautiful travertine tile is a show piece for the homeowner. The tile travels through the kitchen to the back door.<br><br><br>";
Txt[3] = "These stairs are not only beautiful but practical. They lead to a dirt floor basement and therefore need to be durable and easy to clean.<br><br><br>";
Txt[4] = "Brand-new Bamboo! These gorgeous new bamboo floors really give this room some punch.<br><br><br><br>";
Txt[5] = "Six different types of tile create this beautiful new bathroom.<br><br><br><br>";

// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
document.getElementById('SlideShowText').innerHTML = Txt[j];
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
//  End -->
