// SET VARIABLES
var pictureArray = new Array();
var descriptionArray = new Array();

// PICTURES FOR THE GALLERY
pictureArray[0] = 'images/product_arbor.jpg';
pictureArray[1] = 'images/product_wine_cart.jpg';
pictureArray[2] = 'images/product_adrionic_chair.jpg';
pictureArray[3] = 'images/product_solar_lights.jpg';
pictureArray[4] = 'images/product_planter.jpg';
pictureArray[5] = 'images/product_table.jpg';
pictureArray[6] = 'images/product_wishing_well.jpg';

// DESCRIPTIONS FOR THE GALLERY
descriptionArray[0] = 'This is one of our beautiful Arbors.  A great addition to any lawn or garden and and is available in your choice of lumber, style and frinish.<br><br>As Pictured:<br>96&#34;x30&#34;x90&#34;<br>Opening: 72&#34;<br><br>Price: $949.00';
descriptionArray[1] = 'This is our Ourtdoor Serving Cart. The perfect accessory for any garden party; it rolls easily for serving and both sides can be raised and lowered as needed. Available in your choice of lumber, style and finish.<br><br>Price: $695.00';
descriptionArray[2] = 'These Adirondack chairs fold down for easy storage and are supremly comfortable. Your choice of lumber, stain and finish.<br><br>As Pictured:<br>17.5&#34; Width<br><br>Price: $249.00';
descriptionArray[3] = 'These portable solar lights are great for decks, walkways and RV&#39;s. Available in your choice of lumber, stain, finish and light styles (As Available).<br><br>As Pictured:<br>26&#34; Tall<br><br>Price: $139.00';
descriptionArray[4] = 'Use our decorative planters to bring life and nature to any part of your house or yard.  These are available in your choice of lumber, stain, style and finish.<br><br>As Pictured:<br>22&#34;x10&#34;x10&#34;<br><br>Price: $89.00';
descriptionArray[5] = 'Our tables can be a great accessory for your house or yard. Your choice of size, shape, lumber, stain and finish.<br><br>As Pictured:<br>19&#34;x16&#34;x18&#34;<br><br>Price: $89.00';
descriptionArray[6] = 'Wishing wells can be a beautiful enhancement for any yard or garden. Your choise of size, style, lumber, stain and finish.<br><br>As Pictured:<br>23&#34;x26&#34;x80&#34;<br>Price: $1295.00';

function gallerySwap(productNumber){
  document.getElementById("productGallery").src = pictureArray[productNumber];
  document.getElementById("productDescription").innerHTML = descriptionArray[productNumber];
}

function buttonOver(el,which){
  el.src=el.getAttribute(which || "origsrc");
}

function buttonOverStartup(){
  var x = document.getElementsByTagName("img");
  for (var z = 0; z < x.length; z++){
    var oversrc = x[z].getAttribute("oversrc");
    if (!oversrc) continue;
      
    x[z].oversrc_img = new Image();
    x[z].oversrc_img.src=oversrc;
    x[z].onmouseover = new Function("buttonOver(this,'oversrc');");
    x[z].onmouseout = new Function("buttonOver(this);");
    x[z].setAttribute("origsrc",x[z].src);
  }
}

var PreLoad =(window.onload)? window.onload : function(){};
window.onload = function(){PreLoad(); buttonOverStartup();}
