function vote(news_id){
	$('#vote'+news_id).hide();
	$('#vote_img'+news_id).hide();
	$.ajax({
		type: "GET",
		url: "vote.php",
		data: "news_id=" + news_id,
		cache: false,
		error: function(rq, err, e) {alert('vote.php' + err);},
		success: function(resp){
		}
	});
}
