// JavaScript Document

			function get_random()

			{

			    var ranNum= Math.floor(Math.random()*4);

			    return ranNum;

			}

			function RandomGraphics() 

			{

			  var x = get_random();

			

			 if (x == 0) 

			{

			document.write("<style type='text/css'>#pagewidth { background-image: url(/images/entrypoint/backgroundimage00.jpg); background-repeat: no-repeat; background-position: right top;}</style>"); return; 

			}

			 if (x == 1)

			{

			document.write("<style type='text/css'>#pagewidth { background-image: url(/images/entrypoint/backgroundimage01.jpg); background-repeat: no-repeat; background-position: right top;}</style>"); return; 

			}
			 if (x == 2) 

			{

			document.write("<style type='text/css'>#pagewidth { background-image: url(/images/entrypoint/backgroundimage02.jpg); background-repeat: no-repeat; background-position: right top;}</style>"); return; 

			}
			
			 if (x == 3) 

			{

			document.write("<style type='text/css'>#pagewidth { background-image: url(/images/entrypoint/backgroundimage03.jpg); background-repeat: no-repeat; background-position: right top;}</style>"); return; 

			}
			}

			RandomGraphics();
