$(document).ready(function(){
 $("div.post_rating").each(function(i) {
  	var $temp_id = $(this).attr("id");
  	var $temp_this = $(this);
  	$(this).load('/tools/ranking/display/1/'+$temp_id,'',function(elem) {
	  	$('ul li a',this).click(function(){
	  		 // wyslij glos
 			 $temp_this.fadeTo("normal",0.1);
	  		 $.post("/tools/ranking/vote/",
			   { i_type: "1", i_id: $temp_id, points: $(this).html() },
   				function(data){
     				$temp_this.load('/tools/ranking/display/1/'+$temp_id);
	    			$temp_this.fadeTo("normal",1);
   				}
 			    );
 			 return false;   
	  	}
	  	);
  	}
  	);
  });
  

  
//  $("div#adbottom").load('/wp-content/themes/zakupy/reklamy.php');
  });
