<!--
//Javascript Created by Computerhope http://www.computerhope.com
//store the quotations in arrays

images = new Array(2);
images[0] = "<a href = 'http://artbysusanlevin.com/work/2007-2008/detail/amidst-the-clouds.htm'><img src='images/boxes/l1.jpg' alt='Amidst the Clouds'></a>";
images[1] = "<a href = 'http://artbysusanlevin.com/work/2009-2010/detail/on-stage-with-the-band.htm'><img src='images/boxes/l2.jpg' alt='On Stage with the Band'></a>";
images[2] = "<a href = 'http://artbysusanlevin.com/work/2009-2010/detail/the-graduate.htm'><img src='images/boxes/l3.jpg' alt='The Graduate'></a>";
images[3] = "<a href = 'http://artbysusanlevin.com/work/2009-2010/detail/so-far-away.htm'><img src='images/boxes/l4.jpg' alt='So Far Away'></a>";
images[4] = "<a href = 'http://artbysusanlevin.com/work/2009-2010/detail/playing-along.htm'><img src='images/boxes/l5.jpg' alt='Playing Along'></a>";
index = Math.floor(Math.random() * images.length);
document.write(images[index]);

//done
// -->
