function RandomNumber() 
{
  var today = new Date();
  var num= Math.abs(Math.sin(today.getTime()/1000));
  return num;
}

function RandomGraphics() 
{
  var x = RandomNumber();

	
if (x > .90) 
{document.write("<img src='http://www.cagliostroepress.com/totem/totem01.jpg' border=0 width=186 height=158 ></a><br>"); return; 
}
if (x > .80) 
{document.write("<img src='http://www.cagliostroepress.com/totem/totem02.jpg' border=0 width=186 height=158></a><br>"); return; 
}
if (x > .70) 
{document.write("<img src='http://www.cagliostroepress.com/totem/totem03.jpg' border=0 width=186 height=158></a><br>"); return; 
}
if (x > .60) 
{document.write("<img src='http://www.cagliostroepress.com/totem/totem04.jpg' border=0 width=186 height=158></a><br>"); return; 
}
if (x > .50) 
{document.write("<img src='http://www.cagliostroepress.com/totem/totem05.jpg' border=0 width=186 height=158></a><br>"); return; 
}
if (x > .40) 
{document.write("<img src='http://www.cagliostroepress.com/totem/totem06.jpg' border=0 width=186 height=158></a><br>"); return; 
}
if (x > .30) 
{document.write("<img src='http://www.cagliostroepress.com/totem/totem07.jpg' border=0 width=186 height=158></a><br>"); return; 
}
if (x > .20) 
{document.write("<img src='http://www.cagliostroepress.com/totem/totem08.jpg' border=0 width=186 height=158></a><br>"); return; 
}
if (x > .10) 
{document.write("<img src='http://www.cagliostroepress.com/totem/totem09.jpg' border=0 width=186 height=158></a><br>"); return; 
}
if (x > .00) 
{document.write("<img src='http://www.cagliostroepress.com/totem/totem10.jpg' border=0 width=186 height=158></a><br>"); return; 
}
}

RandomGraphics();






