function RandomNumber() 
		{
		  var today = new Date();
		  var num= Math.abs(Math.sin(today.getTime()/1000));
		  return num;
		}
		
		function RandomGraphics() 
		{
		  var x = RandomNumber();
		  
		  if (x > .99) 
		{document.write("<img src=\"_common/images/wheelofthemoment/wheel-10.jpg\" width=\"209\" height=\"81\">"); return; 
		}
		  if (x > .88) 
		{document.write("<img src=\"_common/images/wheelofthemoment/wheel-09.jpg\" width=\"209\" height=\"81\">"); return; 
		}
		  if (x > .77) 
		{document.write("<img src=\"_common/images/wheelofthemoment/wheel-08.jpg\" width=\"209\" height=\"81\">"); return; 
		}
		  if (x > .66) 
		{document.write("<img src=\"_common/images/wheelofthemoment/wheel-07.jpg\" width=\"209\" height=\"81\">"); return; 
		}
		  if (x > .55) 
		{document.write("<img src=\"_common/images/wheelofthemoment/wheel-06.jpg\" width=\"209\" height=\"81\">"); return; 
		}
		  if (x > .44) 
		{document.write("<img src=\"_common/images/wheelofthemoment/wheel-05.jpg\" width=\"209\" height=\"81\">"); return; 
		}
		  if (x > .33) 
		{document.write("<img src=\"_common/images/wheelofthemoment/wheel-04.jpg\" width=\"209\" height=\"81\">"); return; 
		}
		  if (x > .22) 
		{document.write("<img src=\"_common/images/wheelofthemoment/wheel-03.jpg\" width=\"209\" height=\"81\">"); return; 
		}
		  if (x > .11) 
		{document.write("<img src=\"_common/images/wheelofthemoment/wheel-02.jpg\" width=\"209\" height=\"81\">"); return; 
		}
		  if (x > 0)   
		{document.write("<img src=\"_common/images/wheelofthemoment/wheel-01.jpg\" width=\"209\" height=\"81\">"); return; 
		}
		}
		
		RandomGraphics();