$(document).ready(function(){
$('input[name=likey]').hide();
 var aa,bb,cc;
 $.ajax({
  type: "post",
  url: "/vote/up-ajx.asp",
   data: {act:'ishow'},
  //cache: false,
  dataType: "json",
  beforeSend: function(){$('#load').css('display','block');},
  complete: function(){$('#load').hide();},
  error: function(){alert('出错了，您没有选择选项。');},
  success: function(msg){
 $.each(msg,function(i,item){
      aa=item.title;
      bb=item.value;
	  cc=item.top;
$('#img'+i+'s').animate({width: bb},1000);
$('#baifei'+i+'s').html(cc);
  });
  }
});
});
