
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/rotate/rotate-02.jpg\" width=\"487\" height=\"109\">"); return; 
		}
		  if (x > .88) 
		{document.write("<img src=\"../../_common/images/rotate/rotate-01.jpg\" width=\"487\" height=\"109\">"); return; 
		}
		  if (x > .77) 
		{document.write("<img src=\"../../_common/images/rotate/rotate-02.jpg\" width=\"487\" height=\"109\">"); return; 
		}
		  if (x > .66) 
		{document.write("<img src=\"../../_common/images/rotate/rotate-01.jpg\" width=\"487\" height=\"109\">"); return; 
		}
		  if (x > .55) 
		{document.write("<img src=\"../../_common/images/rotate/rotate-03.jpg\" width=\"487\" height=\"109\">"); return; 
		}
		  if (x > .44) 
		{document.write("<img src=\"../../_common/images/rotate/rotate-02.jpg\" width=\"487\" height=\"109\">"); return; 
		}
		  if (x > .33) 
		{document.write("<img src=\"../../_common/images/rotate/rotate-01.jpg\" width=\"487\" height=\"109\">"); return; 
		}
		  if (x > .22) 
		{document.write("<img src=\"../../_common/images/rotate/rotate-03.jpg\" width=\"487\" height=\"109\">"); return; 
		}
		  if (x > .11) 
		{document.write("<img src=\"../../_common/images/rotate/rotate-02.jpg\" width=\"487\" height=\"109\">"); return; 
		}
		  if (x > 0)   
		{document.write("<img src=\"../../_common/images/rotate/rotate-01.jpg\" width=\"487\" height=\"109\">"); return; 
		}
		}
		
		RandomGraphics();