//Title: Random Status Bar text
//Created by: Seamus P. H. Leahy
//Created On: 2/27/2003
//url: http://www.moronicbajebus/include/jscripts/statusbar.js

//place in your HTML:
//...<head>...
//<script type="text/javascript" src="<location to file>statusbar.js"></script>...
//</head>
//<body onload="Statusbar()">...

//You can freely use this on your site if you wish..
function Statusbar()
{
	//Output texts
	//You just need to add any text you want to show in texts array.
	// Put your text in quotes ("text") and apostrophes  (,) in between text.
	var texts = new Array('tryRightClick',
"tip everyday:  LightandSound tunnel : http://godsdirectcontact.us/method.html -- leading you to the Kingdom of Lord",
"tip everyday:  random front homepage: http://godsdirectcontact.us/random.html",
"tip everyday:  GodsDirectContact: http://godsdirectcontact.com/",
"tip everyday:  rememberHesName,http://godsdirectcontact.com/5Nreminder/",
"tip everyday:  Above the tunnel of birth abd death: http://godsdirectcontact.us/finland",
"tip everyday:  Love rose blossom every day: http://godsdirectcontact.com/topics/marriage.htm",
"tip everyday:  Science and Spirituality: http://godsdirectcontact.com/topics/spirituality_and_science.htm",
"tip everyday:  God's network: http://godsdirectcontact.com/all.html",
"tip everyday:  Man and universe chart: http://godsdirectcontact.com/mananduniverse.html",
"tip everyday:  spiritual teaching A-Z:http://godsdirectcontact.com/teachings/",
"tip everyday:  VegetarianABC:http://godsdirectcontact.com/vegetarian/",
"tip everyday:  tryRightClick");
						  
						  
	
	
	//This displays the text in the status bar.Random number gerenated is inside []	
	window.defaultStatus=texts[Math.floor((Math.random()*texts.length))];
};
