(function($) {
	$.extend({
		feeling:function(feeling){
			$.get("/digg.php?action=feeling",{diggFid:digg.fid,diggCid:digg.cid,diggType:digg.type,feeling:feeling},function(result){
				if(result.content.status=="yes"){
					$("#feeling"+feeling).html(result.content.feeling);
				}else if(result.content.status=="no"){
					alert("您已经提交过心情了,不可以重复提交,谢谢您的参与!");
					$.getDigg();
				}
			},'json');
		},
		feelingShow:function(){
			$.get("/digg.php?action=show",{diggFid:digg.fid,diggCid:digg.cid,diggType:digg.type},function(result){
				$("#feeling").html(result);
			},'json');
		},
		getDigg:function(){
			$.get("/digg.php?action=get",{diggFid:digg.fid,diggCid:digg.cid,diggType:digg.type},function(result){
				if(result.content.status=="no"){
					alert("您已经顶过了!");
				}else{
					$("#digg_yes").html(result.content.digg_up);
					$("#digg_no").html(result.content.digg_down);
					$("#feeling1").html(result.content.feeling1);
					$("#feeling2").html(result.content.feeling2);
					$("#feeling3").html(result.content.feeling3);
					$("#feeling4").html(result.content.feeling4);
					$("#feeling5").html(result.content.feeling5);
					$("#feeling6").html(result.content.feeling6);
				}
			},'json');
		},
		diggUp:function(){
			$.get("/digg.php?action=up",{diggFid:digg.fid,diggCid:digg.cid,diggType:digg.type},function(result){
				if(result.content.status=="no"){
					alert("您已经顶过了!");
				}else{
					$("#digg_yes").html(result.content.digg_up);
				}
			},'json');
		},
		diggDown:function(){
			$.get("/digg.php?action=down",{diggFid:digg.fid,diggCid:digg.cid,diggType:digg.type},function(result){
				if(result.content.status=="no"){
					alert("您已经踩过了!");
				}else{
					$("#digg_no").html(result.content.digg_down);
				}
			},'json');
		}
	});
})(jQuery);