<!-- 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/bathroom/BA14.jpg';
Pic[1] = 'images/portfolio/bathroom/BA16.jpg';
Pic[2] = 'images/portfolio/bathroom/BA17.jpg';
Pic[3] = 'images/portfolio/bathroom/BA6.jpg';
Pic[4] = 'images/portfolio/bathroom/BA8.jpg';
Pic[5] = 'images/portfolio/bathroom/BA5.jpg';
Pic[6] = 'images/portfolio/bathroom/BA1.jpg';
Pic[7] = 'images/portfolio/bathroom/BA11.jpg';
Pic[8] = 'images/portfolio/bathroom/BA12.jpg';
Pic[9] = 'images/portfolio/bathroom/BA3.jpg';
Pic[10] = 'images/portfolio/bathroom/BA2.jpg';
Pic[11] = 'images/portfolio/bathroom/BA9.jpg';

Txt[0] = "Custom tile and a custom glass shower surround this 3/4 hall bath alive. The bathroom features handsome custom tile, brushed nickel finishes, and an under-mount sink to a granite counter top. The ceiling was vaulted to give this small area a more spacious feel.<br><br><br><br><br><br><br><br>";
Txt[1] = "Custom tile and a custom glass shower surround this 3/4 hall bath alive. The bathroom features handsome custom tile, brushed nickel finishes, and an under-mount sink to a granite counter top. The ceiling was vaulted to give this small area a more spacious feel.<br><br><br><br><br><br><br><br>";
Txt[2] = "Custom tile and a custom glass shower surround this 3/4 hall bath alive. The bathroom features handsome custom tile, brushed nickel finishes, and an under-mount sink to a granite counter top. The ceiling was vaulted to give this small area a more spacious feel.<br><br><br><br><br><br><br><br>";
Txt[3] = "Master bath beauty. This large soaking/whirlpool tub fills from the ceiling with a Laminar fill spout and is surrounded by honed and filled travertine. It is accompanied by on-site crafted granite counter top, under-mount sinks, and gorgeous custom-built cherry vanity.<br><br><br><br><br><br><br><br>";
Txt[4] = "Master bath beauty. This large soaking/whirlpool tub fills from the ceiling with a Laminar fill spout and is surrounded by honed and filled travertine. It is accompanied by on-site crafted granite counter top, under-mount sinks, and gorgeous custom-built cherry vanity.<br><br><br><br><br><br><br><br><br";
Txt[5] = "Bathroom remodel. The project included new tile - six different types to be exact - new jetted tub, and new sinks.<br><br><br><br><br><br><br><br><br><br>";
Txt[6] = "Good use for a closet. This master bathroom was a closet space, it features a rain can shower head with custom built-in tile seat, heat light, new vanity, and the toilet is behind the glass.<br><br><br><br><br><br><br><br>";
Txt[7] = "This bathroom addition features marble counter top, under-mount sinks, jetted tub, and a cherry vanity. Two recessed medicine cabinets allow more storage.<br><br><br><br><br><br><br><br>";
Txt[8] = "This bathroom addition features marble counter top, under-mount sinks, jetted tub, and a cherry vanity. Two recessed medicine cabinets allow more storage.<br><br><br><br><br><br><br><br>";
Txt[9] = "Basement bathroom. This basement bathroom used to be a half-bathroom. With a little reorganizing of layout and space, we were able to add a shower stall to create a 3/4 bathroom in a tight space and a tight budget.<br><br><br><br><br><br><br><br>";
Txt[10] = "This bathroom upgrade included 1x1 inch floor tile, all new fixtures, tile tub surround, and a new jetted whirlpool tub. A handsome change from the previous 1970's look.<br><br><br><br><br><br><br><br>";
Txt[11] = "Ths basement bathroom was built from scratch. It features an extra large shower.<br><br><br><br><br><br><br><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 -->
