//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('Thank you for visiting http://www.mosquitomagnet.com/help',
						  "Use your OPD reset tool at every tank change.",
						  "Change the attractant every 21 days.",
						  "Only use 12 or 16 gram CO2 cartridges",
						  "New propane tanks need to be purged by a licensed professional propane dealer.",
						  "For accessories, visit out factory store.",
						  "Keep the Mosquito Magnet at least 30 feet away from people areas.",
						  "Always disconnect the propane prior to moving the trap.");
						  
	
	
	//This displays the text in the status bar.Random number gerenated is inside []	
	window.defaultStatus=texts[Math.floor((Math.random()*texts.length))];
};