
			function showVote(vote, id, classid){
				$.ajax({
					url				:		'/e/vino/voteinfo.php',
					data			:		'id='+id+'&classid='+classid+'&tmp='+new Date().getTime(),
					type			:		'GET',
					dataType		:		'json',
					success			:		function(json){
						if(!json)	return;
						var str = '';
						var str2 = '';
						/*
						for(var key in json){
							arr = json[key].toString().split(',');
							if(arr.length<2)	return;
							$(".vote_"+id+'_'+vote).html(arr[1]);
						}
						*/
						if(!json[vote-1])	return;
						arr = json[vote-1].toString().split(',');
						$(".vote_"+id+'_'+vote).html(arr[1]);
					}
				});
			}
			
			function vote(vote, id, classid, title, url, pic){
				$.ajax({
					url				:		'/e/vino/addinfovote.php',
					data			:		'enews=AddInfoVote&id='+id+'&classid='+classid+'&vote='+vote+'&tmp='+new Date().getTime(),
					type			:		'POST',
					success			:		function(data){
						if(data){
							if(data == '¸ÐÐ»ÄúµÄ²ÎÓë£¡'){
								addFeed(id, classid, 'vote', title, url, pic);
							}
							alert(data);
							showVote(vote, id, classid);
						}
					}
				});
			}
