$(function() {

$(".vote").click(function() 
{

var id = $(this).attr("id");
var name = $(this).attr("name");
var dataString = 'id='+ id ;
var parent = $(this);


if(name=='up'){

$.ajax({
	type: "POST",
	url: "vote_up.php",
	data: dataString,
	cache: false,

	success: function(html){
		parent.html(html);
	}  

  });
  
}

else{
$.ajax({
	type: "POST",
	url: "vote_down.php",
	data: dataString,
	cache: false,
	success: function(html){
		parent.html(html);
	}
   
 });


}
  
  
   
 

return false;
	});

});
