// Copyright 2006-2007 javascript-array.com

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; 

// quotes array
var quote=new Array();
  quote[0]='SNAP Productions delivers a  flawlessly executed event. We will continue to do business with this company <br><br>-Denise Pines<br> Executive Producer <br>Tavis Smiley Presents';    /* add as many quotes as you like!*/
  quote[1]='SNAP Productions events are 100% on budget, 100% on time. <br><br>-Vice President Nick Curl<br>Business Development<br>LA Marathon, Inc.';
    quote[2]='SNAP Productions expertise in name talent negotiation, show production and event management adds dimension to our team to make our annual dinners so special. <br><br>-Charisse Bremond <br>President <br>The Brotherhood Crusade';
  quote[3]='SNAP Productions garnered national media attention for several of our programs. They are experts in public relations. <br><br>-Dr. Richard S. Baker <br />Director<br /> Research Centers in Minority Institutions';


var speed=6800;    /*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);

