//-------------------------
// Selects a random image from a predefined array and displays that image,
// along with its title and the name of the artist.
//-------------------------

// edit the rotating artwork here.
// format is title, artist, url

var artwork = [ 
				['After the Rain','Barbara Griffin Robinson','/images/artwork/400/After-the-Rain.jpg'],
				['A break in the Storm,Bagno','Barbara Griffin Robinson','/images/artwork/400/A-Break-in-the-Storm-Bagno.jpg'],
				['Afternoon Bells','Barbara Griffin Robinson','/images/artwork/400/Afternoon-Bells.jpg'],
				['Afternoon Peace,Lourmain','Barbara Griffin Robinson','/images/artwork/400/Afternoon-Peace,-Lourmain.jpg'],
				['Awaken to the Bells','Barbara Griffin Robinson','/images/artwork/400/Awaken-to-the-Bells.jpg'],
				['Deepening Shadows,Tuscany-','Barbara Griffin Robinson','/images/artwork/400/Deepening-Shadows,-Tuscany-.jpg'],
				['Enjoy the Night.','Barbara Griffin Robinson','/images/artwork/400/Enjoy-the-Night.jpg'],
				['Magic Rooftops.','Barbara Griffin Robinson','/images/artwork/400/Magic-Rooftops.jpg'],
				['Morning at the Roman Baths','Barbara Griffin Robinson','/images/artwork/400/Morning-at-the-Roman-Baths.jpg'],
				['Old Stone Steps,Montecchie','Barbara Griffin Robinson','/images/artwork/400/Old-Stone-Steps,-Montechie.jpg'],
				['Rainy Meadows,Provence,France','Barbara Griffin Robinson','/images/artwork/400/Rainy-Meadows,-Provence,-FR.jpg'],																				
				['Storm Coming,Lake-Burton','Barbara Griffin Robinson','/images/artwork/400/Storm-Coming---Lake-Burton.jpg']
				
				
			];


showpiece = Math.floor( Math.random() * artwork.length );

document.write('<img src="' + artwork[showpiece][2] + '" alt="' + artwork[showpiece][0] + ', by ' + artwork[showpiece][1] + '" border="2"><br>');
document.write('<p class="sidecaption"><br>');
document.write('<img src="/images/minigrif.gif" width="20" height="23" alt=" " align="left" hspace="10" vspace="3">');
document.write('<i>' + artwork[showpiece][0] + '</i><br>');
document.write('by ' + artwork[showpiece][1] + '<br>');
document.write('</p>');

