
var newsList = new Array( "<p style='color:white;'><b>Budget and Pre-Budget Reports</b></p>" +
							"<p style='color:white;'>As part of the totalSOLUTION package budget and pre-budget reports are automatically added to your website and emailed out to your contacts. You don’t have to do anything.</p>", 
							// Next News item here ...
							"<p style='color:white;'><b>Andy Hyland<br>Castle Associates</b></p>" +
							"<p style='color:white;'>'The website is  even better value than I thought! I really am quite gobsmacked at the level of service you’ve provided, and am very grateful for your work on this. I would offer to recommend you to others, but obviously there’s no way I want other accountants to have access to the competitive edge you’ve just given me!'</p>",
							"<p style='color:white;'><b>David Purser<br>Farmiloes</b></p>" + 
"<p style='color:white;'>'Just been on the site and registered. Been four years thinking about this and with totalSOLUTION's help did it in a fortnight'");

function RandomNews()
{
	var I, iItems;
	
	iItems = newsList.length - 1;
	
	I = Math.round( ( Math.random() * iItems ) );

	document.write( newsList[I] );
}