﻿// Preload image - incase they are large images.if(document.images){  var main = new Image(); main.src = "http://www.b-artgallery.com/lyt_images/george1.jpg";  var img1 = new Image(); img1.src = "http://www.b-artgallery.com/lyt_images/george1.jpg";  var img2 = new Image(); img2.src = "http://www.b-artgallery.com/lyt_images/george2.jpg";  var img3 = new Image(); img3.src = "http://www.b-artgallery.com/lyt_images/george3.jpg";  var img4 = new Image(); img4.src = "http://www.b-artgallery.com/lyt_images/george4.jpg";  var img5 = new Image(); img5.src = "http://www.b-artgallery.com/lyt_images/george5.jpg";}function change(imageName){  if(document.images){ document['main'].src = eval(imageName + ".src"); }}//function changeBack(){//  if(document.images){ document['main'].src = main.src; }//}
