// JavaScript Document

function viewMural(id){
		
	//<![CDATA[
			  
			   $(document).ready(function(){
		
		  $('#muralTela'+id).fadeIn(1500);
		  $('#ocultDown'+id).hide('fast');
		  $('#ocultUp'+id).show('fast');
		  //$('.erro2').fadeOut('fast');
		  
		});
		// ]]>	
	
	//testar
	
	/*$(document).ready(function(){
	//<![CDATA[
	
		function viewMural(id){
			$('#muralTela'+id).fadeIn(1500);
			$('#ocultDown'+id).hide('fast');
			$('#ocultUp'+id).show('fast');
			//$('.erro2').fadeOut('fast');
		}
	
	// ]]>
});*/
	
	///Atalho = short
	
	/*$(function(){
//código
});
*/
}	

function ocultMural(id){
		
	//<![CDATA[
			  
			   $(document).ready(function(){
		
		  $('#muralTela'+id).hide('slow');
		  $('#ocultDown'+id).show('fast');
		  $('#ocultUp'+id).hide('fast');
		  //$('.erro2').fadeOut('fast');
		  
		});
		// ]]>	
}	

function _animaEnquete(){
	
	//<![CDATA[
			  
		$(document).ready(function(){
		
		  $('.resp0').show(1000);
		  $('.resp1').show(1000);
		  $('.resp2').show(1000);
		 
		});
		// ]]>	
	
}

