<!-- 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/custom/C10.jpg';
Pic[1]  = 'images/portfolio/custom/C11.jpg';
Pic[2]  = 'images/portfolio/custom/C12.jpg';
Pic[3]  = 'images/portfolio/custom/C5.jpg';
Pic[4]  = 'images/portfolio/custom/C6.jpg';
Pic[5]  = 'images/portfolio/custom/C13.jpg';
Pic[6]  = 'images/portfolio/custom/C14.jpg';
Pic[7]  = 'images/portfolio/custom/C8.jpg';
Pic[8]  = 'images/portfolio/custom/C9.jpg';
Pic[9]  = 'images/portfolio/custom/C7.jpg';
Pic[10]  = 'images/portfolio/custom/C1.jpg';
Pic[11]  = 'images/portfolio/custom/C2.jpg';
Pic[12]  = 'images/portfolio/custom/C3.jpg';
Pic[13] = 'images/portfolio/custom/C4.jpg';

Txt[0]  = "Custom knotty pine walls, trim and ceiling bring the rustic feeling to this Evergreen home.<br><br><br><br><br><br>";
Txt[1]  = "Custom knotty pine walls, trim and ceiling bring the rustic feeling to this Evergreen home.<br><br><br><br><br><br>";
Txt[2]  = "Custom knotty pine walls, trim and ceiling bring the rustic feeling to this Evergreen home.<br><br><br><br><br><br>";
Txt[3]  = "This loft added an additional 400 square feet to a gorgeous downtown 1 bed 1 bath condo. With the additional space the client gained office space, custom storage closet and a beautiful hand welded original design railing.<br><br><br><br><br><br>";
Txt[4]  = "This loft added an additional 400 square feet to a gorgeous downtown 1 bed 1 bath condo. With the additional space the client gained office space, custom storage closet and a beautiful hand welded original design railing.<br><br><br><br><br><br>";
Txt[5]  = "We designed and built a 2 bedroom 1 bath with family room basement with custom built in cabinets to help organize the children’s play space.<br><br><br><br><br><br>";
Txt[6]  = "We designed and built a 2 bedroom 1 bath with family room basement with custom built in cabinets to help organize the children’s play space.<br><br><br><br><br><br>";
Txt[7]  = "Who says you can’t have your cake and eat it too? The client wanted to use the existing door space and wanted French doors. This is a custom made door and door frame.<br><br><br><br><br><br>";
Txt[8]  = "Who says you can’t have your cake and eat it too? The client wanted to use the existing door space and wanted French doors. This is a custom made door and door frame.<br><br><br><br><br><br>";
Txt[9]  = "Custom tile creates a beautiful and safe space for this client’s primary heat source.<br><br><br><br><br><br>";
Txt[10]  = "Breakfast bar instead of a wall. This client’s small kitchen seemed even smaller when they bought the home. We knocked down the wall and opened the kitchen up to the living room with this beautiful and functional granite breakfast bar.<br><br><br><br><br><br>";
Txt[11]  = "Upgrading your railing is a perfect way to quickly beatify your space. We put in new hardwoods, new tile and the custom railing.<br><br><br><br><br><br>";
Txt[12]  = "Upgrading your railing is a perfect way to quickly beatify your space. We put in new hardwoods, new tile and the custom railing.<br><br><br><br><br><br>";
Txt[13] = "Upgrading your railing is a perfect way to quickly beatify your space. We put in new hardwoods, new tile and the custom railing.<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 -->

