// JavaScript Document

function rotateEvery(sec)
{
	var Quotation=new Array()

	Quotation[0] = '<p><strong>"All of the biggest technological inventions created by man - the airplane, the automobile, the computer - says little about his intelligence, but speaks volumes 					about his laziness."</strong><br />- Mark Kennedy</p>';
	Quotation[1] = '<p><strong>"It has become appallingly obvious that our technology has exceeded our humanity."</strong><br />- Albert Einstein</p>';
	Quotation[2] = '<p><strong>"Technological progress has merely provided us with more efficient means for going backwards."</strong><br />- Aldous Huxley</p>';
	Quotation[3] = '<p><strong>"The saddest aspect of life right now is that science gathers knowledge faster than society gathers wisdom."</strong><br />- Isaac Asimov</p>';
	Quotation[4] = '<p><strong>"Hardware: where the people in your companys software section will tell you the problem is.<br />Software: where the people in your companys hardware section will tell you the problem is."</strong><br />- Dave Barry</p>';
	Quotation[5] = '<p><strong>"In God we trust, all others we virus scan"</strong><br />- Author Unknown</p>';
	Quotation[6] = '<p><strong>"Those parts of the system that you can hit with a hammer (not advised) are called hardware; those program instructions that you can only curse at are called software."</strong><br />- Author Unknown</p>';
	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('textrotator').innerHTML = Quotation[which];
	
	setTimeout('rotateEvery('+sec+')', sec*7000);
}


