$(document).ready(function(){ // cuando el documento se carga realiza lo de adentro

$("a.voto").click(function()
{


the_id = $(this).attr('id');
/*
    $.ajax({
     type: "POST",
     data: "id_foto="+$(this).attr("id"),
     url: "include/ajax/voto.php",
     success: function(msg)
     {
         if (isNumber(msg))
         {
              $("div#votar"+the_id).html("Votado!"); // actualizopuntaje

         }
         else
         {
             $("div#errores").html(msg); // imprimo error cuando no llega un resultado numérico
         }
     }
    });
*/
$("div#votar"+the_id).html("Concurso finalizado!"); // actualizopuntaje
}); // envío del tag



});
function isNumber (valor)
{
	return (/^-?((\d+\.?\d*)|(\.\d+))$/).test(valor);
}
