// JavaScript Document

function getTheQuote() {
	var randNum = Math.floor( Math.random( ) * 1 + 1 );
	if ( randNum == 1 ) showQuote1();
}

function showQuote1() {
	var object = document.getElementById( "quote" );
	object.innerHTML = "<span style='font-size:180%; font-family: Georgia, serif;'>We're waiting for you.</span><br />Contact us TODAY to register.<br /><span style='font-size:90%;'>847-929-6129<br />847-929-6125<br /><a href='mailto: info@ici-training.com?subject=Home Page inquiry'>info@ici-training.com</a></span>";
}

//-->
