function exibe(obj) {

	if (obj.className=="visivel")
	{
	    obj.className="invisivel";
	}
	 else
	{
		
		 obj.className="visivel";
	}
}
	
function Abre(objname) {
	 var obj = MM_findObj(objname);
	 if(obj && obj.style) obj.style.display = (obj.style.display=="none") ? "" : "none";
}

function Fecha() {
	 var a=Fecha.arguments;
	 for (i=0; i<a.length; i++) {var obj = MM_findObj(a[i]); if(obj && obj.style) obj.style.display = "none"; }
}

function fecharDhtml () {
	var dhtml = document.getElementById("dhtml");
	dhtml.style.display = "none";
}

function showLightboxImage(image, caption) {
	var a = document.createElement('a');
	a.rel = "lightbox";
	a.href = image;
	a.title = caption;
	myLightbox.start(a);
}

$(document).ready(function(){

	$('.parceiros').ListaDestaques({timer: 5000, fadeSpeed: 'slow'});

});