
<!-- Hide the script from old browsers --
//image declarations/loading

a1 = new Image(); a1.src = "http://www.alannyiri.com/images/nav_about2.jpg"; // when mouse is not over the image
a2 = new Image(); {a2.src = "http://www.alannyiri.com/images/nav_about1.jpg";} // when mouse is over the image

b1 = new Image(); b1.src = "http://www.alannyiri.com/images/nav_workshops2.jpg"; // when mouse is not over the image
b2 = new Image(); {b2.src = "http://www.alannyiri.com/images/nav_workshops1.jpg";} // when mouse is over the image

c1 = new Image(); c1.src = "http://www.alannyiri.com/images/nav_exhibit2.jpg"; // when mouse is not over the image
c2 = new Image(); {c2.src = "http://www.alannyiri.com/images/nav_exhibit1.jpg";} // when mouse is over the image

d1 = new Image(); d1.src = "http://www.alannyiri.com/images/nav_publish2.jpg"; // when mouse is not over the image
d2 = new Image(); {d2.src = "http://www.alannyiri.com/images/nav_publish1.jpg";} // when mouse is over the image

e1 = new Image(); e1.src = "http://www.alannyiri.com/images/nav_collect2.jpg"; // when mouse is not over the image
e2 = new Image(); {e2.src = "http://www.alannyiri.com/images/nav_collect1.jpg";} // when mouse is over the image

f1 = new Image(); f1.src = "http://www.alannyiri.com/images/nav_prints2.jpg"; // when mouse is not over the image
f2 = new Image(); {f2.src = "http://www.alannyiri.com/images/nav_prints1.jpg";} // when mouse is over the image

g1 = new Image(); g1.src = "http://www.alannyiri.com/images/nav_home2.jpg"; // when mouse is not over the image
g2 = new Image(); {g2.src = "http://www.alannyiri.com/images/nav_home1.jpg";} // when mouse is over the image


function PicChange(ImageName,NewImage) {
//script to change the ImageName to NewImage
document.images[ImageName].src = eval(NewImage + ".src")}

// --End Hiding Here -->


