
$(document).ready(function() { 

	
});

	/*funciones para mostrar los resultados de la encuesta*/
	function carga_personaje(id){
		 $.ajax({
           async:true,
           type: "GET",
           dataType: "html",
           contentType: "application/x-www-form-urlencoded",
           url:"index.php",
           data:"contenido_personaje/flw/"+id,
           beforeSend:inicioPersonaje,
           success:ResultadoPersonaje,
           timeout:3000
        }); 
		 $("#foto1").attr('src','ver_foto_elenco.php?id='+id+'&alto=120&ancho=95');
		 
         return false;
		}
		
	function ResultadoPersonaje(datos)
	{
	  var x;
	  x = $("#personaje");
	  x.html(datos);
	} 
	
	function inicioPersonaje()
	{	 
	  var x=$("#personaje");
	  x.html('<img src="images/loading.gif">');
	}
	/*funciones para mostrar los resultados de la encuesta*/



