
	stories = new Array(
	
		"<b>Producing Electronically Stored Information - Steps to Sucess for Data Discovery</b> <a href='news_article.asp?newsid=53'>MORE</a>"
		,
		"<b>eDiscovery reform to change the nature of litigation in Australia</b> <a href='news_article.asp?newsid=52'>MORE</a>"
		,
		"<b>CCH Workflow Solutions reduces email data set by 97.6% utilising Near Duplicate Detection technology</b> <a href='news_article.asp?newsid=51'>MORE</a>"
		,
		"<b>CCH Workflow Solutions Chooses AXS-One to Enhance its Litigation Readiness Offering</b> <a href='news_article.asp?newsid=50'>MORE</a>"
		,
		"<b>CCH Workflow Solutions Launches Advanced OCR Services to the Australian Legal Market</b> <a href='news_article.asp?newsid=47'>MORE</a>"
		,
		"<b>CCH Workflow Solutions Integrates Discovery Cracker into its Suite of eDiscovery Services</b> <a href='news_article.asp?newsid=46'>MORE</a>"
		,
		"<b>CCH Workflow Solutions Partners with Equivio to Enhance its eDiscovery Suite of Services</b> <a href='news_article.asp?newsid=45'>MORE</a>"
		
	);
	i=0;
speed = 5000;
x = document.getElementById("news");

function news(){
x.innerHTML = stories[i];
play();	
}

function play(){
if(i<=stories.length-1){
setTimeout("news()",speed);
++i;
	}else
	{i=0; news();}
}

window.onload = news;