//<![CDATA[
var quote=new Array();
  quote[0]=' &quot;All the business aspects were excellent and I am on my way to building the WOW practice.&quot; <br><em>-Daniel Toland, DO<br>Warner Robins, GA</em>';    /* add as many quotes as you like!*/
  quote[1]='&quot;I love the meeting and thoroughly enjoyed being invited to attend.&quot;<br><i> -Neil Fenske, MD <br>Tampa, FL';
  quote[2]='&quot;Nice interaction of the speakers and a wonderful relaxing atmosphere.&quot;<br><i> -Christopher Obeime, MD <br>Indianapolis, IN';
  quote[3]='&quot;I loved the meeting.  It was so informative.  I want to come every year.&quot;<br><i> -Gwen Simpkins, ARNP-C <br>Melbourne, FL';
  quote[4]='&quot;Very interactive, friendly people and good demo sessions.&quot;<br><i> -Wael Issa, RN <br>Montreal, QC';
  quote[5]='&quot;I was impressed with the diversity in a single conference and the approachability of all the speakers.&quot;<br><i> -Susanne Powell, MD <br>Davis, CA';
  quote[6]='&quot;ODAC allows both new doctors and experienced practitioners to focus on innovative therapies.&quot;<br><i> -James M. Spencer, MD, MS <br>St. Petersburg, FL';
  quote[7]='&quot;Absolutely an electric atmosphere both socially and professionally. ODAC once again promised and over delivered!&quot;<br><i> -Marcus Goodman, DO <br>Aventura, FL';
  quote[8]='&quot;Informative, interesting, innovative and clinically up to date. I really enjoyed it.&quot;<br><i>  -Adam Friedman, MD <br>New York, NY';
  quote[9]='&quot;Everything was great!&quot;<br><i> -Leon Kircik, MD Louisville, KY';

var speed=6500;    /*this is the time in milliseconds adjust to suit*/
var q=0;

function showQuote() {

     document.getElementById("quotes").innerHTML=quote[q];
     q++;
if(q==quote.length) {
     q=0;
  }
}
setInterval('showQuote()',speed);
   
 //]]>




// Copyright 2006-2007 javascript-array.com NAV BAR

var timeout	= 500;
var closetimer	= 0;
var ddmenuitem	= 0;

// open hidden layer
function mopen(id)
{	
	// cancel close timer
	mcancelclosetime();

	// close old layer
	if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';

	// get new layer and show it
	ddmenuitem = document.getElementById(id);
	ddmenuitem.style.visibility = 'visible';

}
// close showed layer
function mclose()
{
	if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
}

// go close timer
function mclosetime()
{
	closetimer = window.setTimeout(mclose, timeout);
}

// cancel close timer
function mcancelclosetime()
{
	if(closetimer)
	{
		window.clearTimeout(closetimer);
		closetimer = null;
	}
}

// close layer when click-out
document.onclick = mclose; 
