/*----------------------------------------------------------------
	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; on the menu<br />for an interactive tour<br />of our current websites!";
announce[3] = "Just click &quot;links&quot; on the menu<br />to see Netpalouse<br />product recommendations.";

var i = Math.floor(4*Math.random())

document.write(announce[i]);
