/*
     This script downloaded from www.JavaScriptBank.com
     Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
*/
function rotateEvery(sec)
{
	var Quotation=new Array()

	// QUOTATIONS
	Quotation[0] = '<span class="fact">In 1852 Ohio was the first state to enact laws protecting working women.</span>';
	Quotation[1] = '<span class="fact">50% of the United States population lives within a 500 mile radius of Columbus.</span>';
	Quotation[2] = '<span class="fact">When you retain Friedman, Domiano & Smith as your law firm, you get much more than the service of just one lawyer. You also receive a case manager and paralegal assisting your case.</span>';
	Quotation[3] = '<span class="fact">The Bureau of Justice Statistics reports that almost half of all medical malpractice lawsuits filed in the US are brought against surgeons.</span>';
	Quotation[4] = '<span class="fact">Compared with other vehicle types, utility vehicles experience the highest rollover rates in injuries that cause injury or death.</span>';
	Quotation[5] = '<span class="fact">Negligence is a failure to use ordinary care. Ordinary care means that each person is required to use the care that any reasonably careful person would use under the same or similar circumstances to avoid causing injury.</span>';
	Quotation[6] = '<span class="fact">In a civil case, a lawyer must prove the injured person&acute;s claim by a "preponderance of the evidence." This means that the lawyer has to prove that the injured person has the greater weight of evidence.</span>';
	Quotation[7] = '<span class="fact">When involved in a car accident, Ohio law allows you to choose your own repair shop. The insurance company may suggest a shop but cannot force you to accept their recommendation.</span>';
	Quotation[8] = '<span class="fact">Medical malpractice is professional negligence by act or omission by a health care provider in which the care provided does not meet the accepted standards of their specialty.</span>';
	Quotation[9] = '<span class="fact">In Ohio it is illegal to fish for whales on Sunday.</span>';

	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('textrotator').innerHTML = Quotation[which];
	
	setTimeout('rotateEvery('+sec+')', sec*10000000);
}
