<!-- the java script has been found at www.javascriptkit.com and www.javafile.com -->

var text = ["There are two means of refuge from the miseries of life: Music and Cats - Albert Schweitzer", "Paranoia Station is a place of fun and magic, and the people who infest it always freak me something tragic - M.D", "Grey coloured vehicles come down from the sky, spitting and scratching, fall into the pie - M.D", "I’ve got no one to talk to anymore except a window on the screen - N.C", "6EQUJ5 - WOW! - SETI 1967", "I try not to bring up a good Chardonnay - M.D", "I busied myself with some routine spacecraft maintenance - M.D", "Everything's derivative - M.D","Please let me know if I'm insane - M.D"];
 
 <!-- "No great artist ever sees things as they really are. If he did he would cease to be an artist - Oscar Wilde, "Patriotism is your conviction that this country is superior to all others because you were born in it - George Bernard Shaw", "Life isn't about finding yourself. Life is about creating yourself - George Bernard Shaw",-->																																																												

var img = ['<img src="photos/1.jpg"/>', '<img src="photos/2.jpg"/>', '<img src="photos/3.jpg"/>', '<img src="photos/4.jpg"/>','<img src="photos/5.jpg"/>','<img src="photos/6.jpg"/>',];

var imglen = img.length; // length
 var textlen = text.length;


function 
	showAdTtxt()
		{
			
			var rand = Math.floor(textlen*Math.random());
			document.write(text[rand]);
		}
function 
	showAdimg()
		{
			if(imglen == 0)
				{
					document.write('Kamakura Rocks!');
					return false;
				}
			var rand = Math.floor(imglen*Math.random());
			
			document.write(img[rand]);
		}
function
	showDate()
		{
				document.write('Last Update: Thursday, May 17th');
		}