<!--- begin slide show script --->

<!--
//Slide Show script (this notice must stay intact)
//For this and more scripts
//visit java-scripts.net or http://wsabstract.com

var myPix = new Array("images/jobs/RE02/kitchen-remodel01.jpg","images/jobs/RE02/kitchen-remodel02.jpg")
var thisPic = 0

function doPrevious() {
    if (document.images && thisPic > 0) {
        thisPic--
        document.myPicture.src=myPix[thisPic]
    }
}

function doNext() {
    if (document.images && thisPic < 1) {
        thisPic++
        document.myPicture.src=myPix[thisPic]
    }
}
// -->

