function favr(el, post_id) {
	$.getJSON('/sys/ohmblog/fav.php', {'post_id': post_id}, function(data, t) {
		if(data.now == 1) el.src = '/i/star_on.gif';
		else el.src = '/i/star.gif';
	});

	return false;
}
