		jQuery(document).ready(function(){	
		
			jQuery("#slide").easySlider({
				auto: true, 
				continuous: true,
				numeric: true,
				pause: 4000
			});
			
			jQuery(document).pngFix();
			
		});	 //jQuery fim document.ready

		// Aumenta ou Diminui Fonte
		var tam = 12;
		function fonte(tipo,elemento){
			if (tipo=="aumenta") {
				if(tam<14) tam+=1;
			} else {
				if(tam>10) tam-=1;
			}
			document.getElementById('layout').style.fontSize = tam+'px';

		}

		// Pop up
		function some() {
			document.getElementById("mh8").style.display = "none";
		}
		window.onload = function tempo() {
			setTimeout("some()",20000);
		}
