text = new Array(9)
text[0] = "Welcome to the online home of Summit Scout Network"
text[1] = "Login to the Members' Section from the homepage if you know the password..."
text[2] = "Theme Park Camp pictures and reports online now"
text[3] = "Check out the Programme section for upcoming events!"
text[4] = "Want a link to your Network or Explorer Scout site? Go to the Communicate section and contact us."
text[5] = "Take a look at the photos in our online galleries!"
text[6] = "www.SummitNetwork.org.uk"
text[7] = "Theme Park Camp 2009 : book now!"
text[8] = "Theme Park Camp 2009 : book now!"
text[1] = "Theme Park Camp 2009 : book now!"
text[4] = "Theme Park Camp 2009 : book now!"
text[5] = "Theme Park Camp 2009 : book now!"


function rand(num){
    return Math.floor(Math.random() * num) + 1;
}

function scrolltext(go){
	var whichline = rand(9);
	switch(whichline){
  		case 1:
			document.write(text[1]);
			break;
  		case 2:
			document.write(text[2]);
			break;
  		case 3:
			document.write(text[3]);
			break;
  		case 4:
			document.write(text[4]);
			break;
  		case 5:
			document.write(text[5]);
			break;
  		case 6:
			document.write(text[6]);
			break;
  		case 7:
			document.write(text[7]);
			break;
  		case 8:
			document.write(text[8]);
			break;
  		default:
			document.write(text[0]);
	}
}
