<!-- 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/commercial/CL1.jpg';
Pic[1] = 'images/portfolio/commercial/CL2.jpg';
Pic[2] = 'images/portfolio/commercial/CL3.jpg';
Pic[3] = 'images/portfolio/commercial/CL4.jpg';
Pic[4] = 'images/portfolio/commercial/CL5.jpg';
Pic[5] = 'images/portfolio/commercial/CL6.jpg';
Pic[6] = 'images/portfolio/commercial/CL7.jpg';
Pic[7] = 'images/portfolio/commercial/CL8.jpg';
Pic[8] = 'images/portfolio/commercial/CL9.jpg';
Pic[9] = 'http://m.travelpn.com/images/highlands_ranch/hotel/0/030005/Guest_room_F_1.jpg';
Pic[10] = 'http://m.travelpn.com/images/highlands_ranch/hotel/0/030005/Lobby_F_1.jpg';
Pic[11] = 'http://m.travelpn.com/images/highlands_ranch/hotel/0/030005/Restaurant_F_1.jpg';
Pic[12] = 'http://m.travelpn.com/images/highlands_ranch/hotel/0/030005/Meeting_room_F_1.jpg';

Txt[0] = "New oak planters for Marlowe’s. Marlowe’s located on the 16th street mall and Glenarm needed to redefine their front entrance space. The challenge of the project was matching the existing wait bench in style and stain color. As you can see we were successful!<br><br><br><br><br><br><br><br>";
Txt[1] = "New oak planters for Marlowe’s. Marlowe’s located on the 16th street mall and Glenarm needed to redefine their front entrance space. The challenge of the project was matching the existing wait bench in style and stain color. As you can see we were successful!<br><br><br><br><br><br><br><br>";
Txt[2] = "New oak planters for Marlowe’s. Marlowe’s located on the 16th street mall and Glenarm needed to redefine their front entrance space. The challenge of the project was matching the existing wait bench in style and stain color. As you can see we were successful!<br><br><br><br><br><br><br><br>";
Txt[3] = "Paramount Café 16th street mall, downtown Denver. The front floor of the Paramount Café used to be downward sloping because it was originally the front entrance to the historic Paramount Theater. 58 years later the historic building gets a face or floor lift. The final photograph shows the leveled floor topped with new Marmoluim.<br><br><br><br><br><br><br><br>";
Txt[4] = "Paramount Café 16th street mall, downtown Denver. The front floor of the Paramount Café used to be downward sloping because it was originally the front entrance to the historic Paramount Theater. 58 years later the historic building gets a face or floor lift. The final photograph shows the leveled floor topped with new Marmoluim.<br><br><br><br><br><br><br><br>";
Txt[5] = "A new bar front for the Paramount Café. Custom, made to order and beautiful right down to the details.<br><br><br><br><br><br><br><br>";
Txt[6] = "A new bar front for the Paramount Café. Custom, made to order and beautiful right down to the details.<br><br><br><br><br><br><br><br>";
Txt[7] = "A new bar front for the Paramount Café. Custom, made to order and beautiful right down to the details.<br><br><br><br><br><br><br><br>";
Txt[8] = "Brand new bathrooms for the Comfort Suites, 76 of them. New vanities, Mirrors’, faucets and granite counter tops.<br><br><br><br><br><br><br><br>";
Txt[9] = "<br><br><br><br><br><br><br><br><br><br>";
Txt[10] = "<br><br><br><br><br><br><br><br><br><br>";
Txt[11] = "<br><br><br><br><br><br><br><br><br><br>";
Txt[12] = "<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 -->
