var imgs = new Array(); var imgcnt = 0; var thisimg = 0;
imgs[imgcnt++] = 'images\/landscapingpic1.JPG';
imgs[imgcnt++] = 'images\/landscapingpic2.JPG';

function nextImg() {
if (document.images) {
  thisimg++;
  if (thisimg >= imgcnt) thisimg = 0;
  document.rollimg.src = 'images\/landscapingpic2.JPG';
}
}
function prevImg() {
if (document.images) {
  thisimg--;
  if (thisimg < 0) thisimg = imgcnt-1;
  document.rollimg.src = 'images\/landscapingpic1.JPG';

}
} 