
Upon completion of your landscape design process, VisionScape will provide you with a complete materials list that is itemized and broken down into phases to ensure easy implementation. Keeping track of your materials is another way to keep track of your budget, and at VisionScape, budget awareness is always a priority.
For the “Do-It-Yourselfer,” the materials list becomes a shopping list. For those who hire a contractor, the list is a valuable tool in helping you to determine what constitutes a fair and comprehensive bid.
var movieArray= new Array();
var movieNameArray= new Array();
var index = 0;
var indexMax = 2;
movieArray[0] = '';
movieArray[1] = '';
movieArray[2] = '';
function prevImage(){
var targetDiv = document.getElementById("ccontentDiv");
var currentImageText = document.getElementById("currentImageText");
var currentImageName = document.getElementById("currentImageName");
if(index == indexMax){
index = 0;
}
else{
index++;
}
currentImageText.innerHTML = (index + 1);
targetDiv.innerHTML = movieArray[index];
}
function nextImage(){
var targetDiv = document.getElementById("ccontentDiv");
var currentImageText = document.getElementById("currentImageText");
var currentImageName = document.getElementById("currentImageName");
if(index == 0){
index = indexMax;
}
else{
index--;
}
currentImageText.innerHTML = (index + 1);
targetDiv.innerHTML = movieArray[index];
}
1 of 3
Previous Image | Next Image