



/* ----------------------------------------------------------------------------------------------------------------------------------------------- */
/* -- GLOBAL SHOW AND HIDE -- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------- */
function showHideElement(whichElement){
	delta = document.getElementById(whichElement);

	 if (delta.style.display == 'none' || delta.style.display == ''){
	 	delta.style.display = 'block';
	 }else{
		delta.style.display = 'none';
	 }
}
/* ----------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------- */












/* ----------------------------------------------------------------------------------------------------------------------------------------------- */
/* --  Resolve o problema das imagens em background onOver - NO IE  -- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------- */
try{document.execCommand("BackgroundImageCache", false, true);}
catch(err){}
/* ----------------------------------------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------------------------- */
