NumberOfImagesToRotate=3
FirstPart='<img src="http://www.graphicsoptimization.com/im/head/head'
LastPart='.png" height="97">'
function printImage(){
var r=Math.ceil(Math.random()*NumberOfImagesToRotate)
document.write(FirstPart+r+LastPart);}
