/******************************************************************************************
 * JavaScript function -- start                                                           *
 * Purpose: Allows more than one function to be run on page loading                       *
 * Requirement: Functions it calls must be included on page                               *
 * Created: 12/05/08                                                                      *
 ******************************************************************************************/
function start() {
	getParameters();
	//setup for verdicts to scroll;
	repeatHeight = $('verdicts').scrollHeight; //get the current height so we know when to wrap
	$('verdicts').innerHTML = $('verdicts').innerHTML + $('verdicts').innerHTML;  //add a second copy so we can scroll down to the wrap point
	stopScroll = 0;
	x = setTimeout("scrollList()",1000);	// start scrolling after one second
}
