// JavaScript Document
images = new Array(2);
images[0] = "<a href='http://www.knowltonridgeequestrian.com/' target='_blank'><img src='images/site_knowlton.jpg' alt='Knowlton' width='183' height='123' class='paddedimage' /></a>";
images[1] = "<a href='http://www.stringbeanstudio.com/' target='_blank'><img src='images/site_stringbean.jpg' alt='String Bean Studio' width='183' height='123' class='paddedimage' /></a>";

index = Math.floor(Math.random() * images.length);
document.write(images[index]);

