/* Script to pick a random card image for the left sidebar.  */
var images=5;	/* Number of possible images */
var random= Math.round(Math.random()*(images-1))+1;
document.write('<img src="images/sidebar_samplecard' + random + '.gif" width=242 height=322 alt="Sample card to spark creative thinking">');

