//<![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><em>-Neil Fenske, MD <br>Tampa, FL</em>';
	quote[2]='&quot;Nice interaction of the speakers and a wonderful relaxing atmosphere.&quot;<br><em>-Christopher Obeime, MD <br>Indianapolis, IN</em>';
	quote[3]='&quot;I loved the meeting.  It was so informative.  I want to come every year.&quot;<br><em>-Gwen Simpkins, ARNP-C <br>Melbourne, FL</em>';
	quote[4]='&quot;Very interactive, friendly people and good demo sessions.&quot;<br><em>-Wael Issa, RN <br>Montreal, QC</em>';
	quote[5]='&quot;I was impressed with the diversity in a single conference and the approachability of all the speakers.&quot;<br><em>-Susanne Powell, MD <br>Davis, CA</em>';
	quote[6]='&quot;ODAC allows both new doctors and experienced practitioners to focus on innovative therapies.&quot;<br><em>-James M. Spencer, MD, MS <br>St. Petersburg, FL</em>';
	quote[7]='&quot;Absolutely an electric atmosphere both socially and professionally. ODAC once again promised and over delivered!&quot;<br><em>-Marcus Goodman, DO <br>Aventura, FL</em>';
	quote[8]='&quot;Informative, interesting, innovative and clinically up to date. I really enjoyed it.&quot;<br><em>-Adam Friedman, MD <br>New York, NY</em>';
	quote[9]='&quot;Everything was great!&quot;<br><em>-Leon Kircik, MD Louisville, KY</em>';
  
	// added as of May 21, 2010 - by rc
	quote[10]='&quot;I find the Orlando Derm conference to be, &quot;pound for pound&quot; the best and most enjoyable conference that I attend each year.&quot;<br><em>-Brad P. Glick, DO, MPH <br> Margate, FL</em>';
	quote[11]='&quot;The ODAC conference was a practical review of some topics for this seasoned dermatologist.&quot;<br><em>-Beverly A. Johnson, MD<br> Washington, DC</em>';
	quote[12]='&quot;I plan on attending ODAC again next year. The conference was outstanding. It was a great opportunity to hear about new developments in cosmetic dermatology and to network with peers. It was a very valuable experience.&quot;<br><em>-Michael Osleber, MD<br> Gainesville, FL</em>';

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; 
