    $(document).ready(function (){
        $("span").click(function (){
			id = $(this).attr("id");
			tipo = $(this).attr("name");
			if (tipo=="pos" || tipo=="neg") {			
			if (tipo=="pos") { 
				tipo=1; 
				estado="Votada";
				fondo="url(imagenes/fondo-voto2.png) no-repeat center";
				}
			if (tipo=="neg") { 
			 tipo=-1; 
			 id = id.substr (1);
			 estado="ngtv";		
			 fondo="url(imagenes/fondo-voto3.png) no-repeat center";
			}
			php =  "votoajax.php";
		    variables = "?tipo=" + tipo + "&id=" + id;
			php = php + variables;
			vid="#v" +id;
			cid="#c" + id;
         $.get(php, function(dato) {
                if (dato!="Err") {
                if (dato==":(") {dato="--"; alert('Debes votar otras perlitas para poder votar negativo');}
                    $(vid).text(dato);
                    
                    }
                })
			id="#" +id;
			$(id).text(estado);
			$(cid).css("background", fondo); 
			}
        });
    });

