/**
 * @author growin
 */
$(function() {
$(".vote").click(function() {
	var id = $(this).attr("id");
	var name = $(this).attr("name");
	var dataString = 'id='+ id ;
	var parent = $(this);
	
	if(name=='up') {
		$(this).fadeIn(200).html('<img src="http://www.oguru.com.br/imgs/ajax-loader.gif" align="absmiddle">');
		$.ajax({
		   type: "POST",
		   url: "http://www.oguru.com.br/logicaPHP/up_vote.php",
		   data: dataString,
		   cache: false,
		
		   success: function(html)
		   {
			parent.html(html);
		  
		  }  });
  
	} else {
	
		$(this).fadeIn(200).html('<img src="http://www.oguru.com.br/imgs/ajax-loader.gif" align="absmiddle">');
		$.ajax({
		   type: "POST",
		   url: "http://www.oguru.com.br/logicaPHP/down_vote.php",
		   data: dataString,
		   cache: false,
		
		   success: function(html)
		   	{
			   parent.html(html);
		  	}
		 });
	}

	return false;
	});
	
});
