<!-- 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/poptops/PA1.jpg';
Pic[1] = 'images/portfolio/poptops/PA2.jpg';
Pic[2] = 'images/portfolio/poptops/PA3.jpg';
Pic[3] = 'images/portfolio/poptops/PA5.jpg';
Pic[4] = 'images/portfolio/poptops/PA4.jpg';
Pic[5] = 'images/portfolio/poptops/PA6.jpg';
Pic[6] = 'images/portfolio/poptops/PA7.jpg';
Pic[7] = 'images/portfolio/poptops/PA8.jpg';
Pic[8] = 'images/portfolio/poptops/PA9.jpg';
Pic[9] = 'images/portfolio/poptops/PA10.jpg';
Pic[10] = 'images/portfolio/poptops/PA11.jpg';
Pic[11] = 'images/portfolio/poptops/PA13.jpg';
Pic[12] = 'images/portfolio/poptops/PA12.jpg';
Pic[13] = 'images/portfolio/poptops/PA14.jpg';
Pic[14] = 'images/portfolio/poptops/PA15.jpg';
Pic[15] = 'images/portfolio/poptops/PA17.jpg';
Pic[16] = 'images/portfolio/poptops/PA16.jpg';

Txt[0] = "A rustic mountain home decides to add an 1100 square foot addition with a new porch overhang for a back deck. Rough cut cedar trim.<br><br><br><br><br><br><br><br>";
Txt[1] = "A new attic dormer creates more space in this finished attic with French doors to walk out to an elevated patio.<br><br><br><br><br><br><br><br>";
Txt[2] = "A new attic dormer creates more space in this finished attic with French doors to walk out to an elevated patio.<br><br><br><br><br><br><br><br>";
Txt[3] = "This new 200 square foot addition creates a new mud room and communication center for this 120 year old home. This addition features custom made art nouveau windows, tile and a buffet counter for back yard entertaining.<br><br><br><br><br><br><br><br>";
Txt[4] = "This new 200 square foot addition creates a new mud room and communication center for this 120 year old home. This addition features custom made art nouveau windows, tile and a buffet counter for back yard entertaining.<br><br><br><br><br><br><br><br>";
Txt[5] = "This 100 year old house needs some space, with nowhere to go but up. Originally the house had an unfinished attic and was only 1200 square feet.<br><br><br><br><br><br><br><br>";
Txt[6] = "This 100 year old house needs some space, with nowhere to go but up. Originally the house had an unfinished attic and was only 1200 square feet.<br><br><br><br><br><br><br><br>";
Txt[7] = "Popping the Top created 900 square feet of living space, a new bathroom, and two large bedrooms for a total of 4 dormers with glass block windows on neighbors side. It also freed up space on the main floor for a larger living room and an office. Keeping style with the original house design fish scale siding was placed on the front and back of the addition.<br><br><br><br><br><br><br><br>";
Txt[8] = "Popping the Top created 900 square feet of living space, a new bathroom, and two large bedrooms for a total of 4 dormers with glass block windows on neighbors side. It also freed up space on the main floor for a larger living room and an office. Keeping style with the original house design fish scale siding was placed on the front and back of the addition.<br><br><br><br><br><br><br><br>";
Txt[9] = "Popping the Top created 900 square feet of living space, a new bathroom, and two large bedrooms for a total of 4 dormers with glass block windows on neighbors side. It also freed up space on the main floor for a larger living room and an office. Keeping style with the original house design fish scale siding was placed on the front and back of the addition.<br><br><br><br><br><br><br><br>";
Txt[10] = "A custom designed stair case helped maintain floor space on the main floor.<br><br><br><br><br><br><br><br>";
Txt[11] = "A custom designed stair case helped maintain floor space on the main floor.<br><br><br><br><br><br><br><br>";
Txt[12] = "The Master bedroom of the addition features large his-and-hers closets. <br><br><br><br><br><br><br><br>";
Txt[13] = "The Master bedroom of the addition features large his-and-hers closets. <br><br><br><br><br><br><br><br>";
Txt[14] = "The second bedroom has a large closet and a utility access closet.<br><br><br><br><br><br><br><br>";
Txt[15] = "Each closet has custom built in tongue and groove cedar planks to keep your clothing fresh.<br><br><br><br><br><br><br><br>";
Txt[16] = "Each closet has custom built in tongue and groove cedar planks to keep your clothing fresh.<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 -->
