NumberOfImagesToRotate=10;
FirstPart='<img src="image';
LastPart='.jpg" alt="Artworks by Jasmine Jan" height="396" width="550">';
function printImage(){
var r=Math.ceil(Math.random()*NumberOfImagesToRotate);
document.write(FirstPart+r+LastPart);
}