$(function() {

$(".vote").click(function() 
{

var id = $(this).attr("id");
var name = $(this).attr("name");
var dataString = 'id='+ id ;
var parent = $(this).parent();


if(name=="up")
{

$(this).fadeIn(200).html('<img src="http://pobracara.dyndns.org/dot.gif" align="absmiddle">');
$.ajax({

   type: "POST",
   url: "/up_vote.php",
   data: dataString,
   cache: false,

   success: function(html)
   {
    parent.html(html);
  
  }  });
  
}
else
{

$(this).fadeIn(200).html('<img src="http://pobracara.dyndns.org/dot.gif" align="absmiddle">');
$.ajax({
   type: "POST",
   url: "/down_vote.php",
   data: dataString,
   cache: false,

   success: function(html)
   {
       parent.html(html);
  }
   
 });


}
  
  
   
 

return false;
	});

});
