/*----------------------------------------------------------------
	Displays random text on index.html
------------------------------------------------------------------*/

var announce = new Array ();

announce[0] = "Select &quot;newsletter&quot; on the menu<br />to sign up for our monthly<br />Netpalouse Newsletter!";
announce[1] = "Read my latest blog!<br />Just select &quot;eldergeek blog&quot;<br />on the menu.";
announce[2] = "Click &quot;portfolio&quot; <br />on the menu for a tour<br />of our current websites!";
announce[3] = "Select &quot;comments&quot; on the menu<br />to see what people are saying about Netpalouse.";

var i = Math.floor(4*Math.random());

document.write(announce[i]);

