<!-- 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/kitchen/K9.jpg';
Pic[1] = 'images/portfolio/kitchen/K10.jpg';
Pic[2] = 'images/portfolio/kitchen/K11.jpg';
Pic[3] = 'images/portfolio/kitchen/K3.jpg';
Pic[4] = 'images/portfolio/kitchen/K4.jpg';
Pic[5] = 'images/portfolio/kitchen/K5.jpg';
Pic[6] = 'images/portfolio/kitchen/K6.jpg';
Pic[7] = 'images/portfolio/kitchen/K7.jpg';
Pic[8] = 'images/portfolio/kitchen/K8.jpg';
Pic[9] = 'images/portfolio/kitchen/K1.jpg';
Pic[10] = 'images/portfolio/kitchen/K2.jpg';

Txt[0] = "A true butler’s pantry. New upper and lower cabinets make this space functional. New tile back splash and Caeserstone counter tops make it beautiful.<br><br><br><br><br><br><br><br>";
Txt[1] = "A true butler’s pantry. New upper and lower cabinets make this space functional. New tile back splash and Caeserstone counter tops make it beautiful.<br><br><br><br><br><br><br><br>";
Txt[2] = "A true butler’s pantry. New upper and lower cabinets make this space functional. New tile back splash and Caeserstone counter tops make it beautiful.<br><br><br><br><br><br><br><br>";
Txt[3] = "This kitchen was a complete re-vamp. We removed the 1950’s style metal cabinets, moved the sink, stove and fridge spaces and started from the floor up. New Porcelain tile, new floor plan, all new Viking appliances,2x2 Travertine tile back splash, handmade butcher block island, Caeserstone countertops, new cabinets up and down, new lighting and under cabinet lighting. This kitchen is prepared for the large dinner parties the clients enjoy hosting.<br><br><br><br><br><br><br><br>";
Txt[4] = "This kitchen was a complete re-vamp. We removed the 1950’s style metal cabinets, moved the sink, stove and fridge spaces and started from the floor up. New Porcelain tile, new floor plan, all new Viking appliances,2x2 Travertine tile back splash, handmade butcher block island, Caeserstone countertops, new cabinets up and down, new lighting and under cabinet lighting. This kitchen is prepared for the large dinner parties the clients enjoy hosting.<br><br><br><br><br><br><br><br>";
Txt[5] = "This kitchen was a complete re-vamp. We removed the 1950’s style metal cabinets, moved the sink, stove and fridge spaces and started from the floor up. New Porcelain tile, new floor plan, all new Viking appliances,2x2 Travertine tile back splash, handmade butcher block island, Caeserstone countertops, new cabinets up and down, new lighting and under cabinet lighting. This kitchen is prepared for the large dinner parties the clients enjoy hosting.<br><br><br><br><br><br><br><br>";
Txt[6] = "Perfect to the littlest detail<br><br><br><br><br><br><br><br>";
Txt[7] = "Perfect to the littlest detail<br><br><br><br><br><br><br><br>";
Txt[8] = "Perfect to the littlest detail<br><br><br><br><br><br><br><br>";
Txt[9] = "New hardwood floors start this kitchen off right. New appliances, granite counter tops, tile back splash and cabinets make this a beautiful new kitchen.<br><br><br><br><br><br><br><br>";
Txt[10] = "New hardwood floors start this kitchen off right. New appliances, granite counter tops, tile back splash and cabinets make this a beautiful new kitchen.<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 -->
