var channel = null;
var fid = null;

$(document).ready(function () {
	channel = $("#channel").val();
	fid = $("#fid").val();
    loadCommentList();
});

function loadCommentList(){
   $("#commentList").load("/comment/commentListAll.do",{channel: channel, fid: fid},initComment);
}

function loadCommentLeaveForm(){
	$("#commentLeave").get("/comment/commentLeave.do",{channel: channel, fid: fid});
}

function reload(page){
	$("#commentList").load("/comment/commentListAll.do",{channel: channel, fid: fid, page: page},initComment);
}

function initComment(){
	
    $(".leaveCommentLink").click(function(){
	     $.get("/comment/commentLeave.do",{channel: channel, fid: fid},function(data){
	        $("#commentLeave").html(data);
	        $("#commentLeave").dialog(
	        {
		        title:"请您评论:",
				resizable: false,
				height: 300,
				width: 550,
				modal: true,
				overlay: { 
				opacity: 0.5, 
				background: "black"
				}        
	        });
	     });
	     return false;
    });

}