// index_scripts.js
//
//----------------------------------------------------------------------

function random_pics() {
	  var picnum = Math.ceil(34 * Math.random()) + ''; 
	  var text_to_write = '<img src= "/img/' + picnum + '.jpg" width="303" height="226"  border="1" alt="">';
	  document.writeln(text_to_write); 
}  // end random_pics

