$(document).ready(function(){
	/*
	$("#AddCommentLink a").click(function() {
		$(".ReplyCommentDiv").remove();
		$(".AddCommentDiv").toggle();
		return false;
	});
	
	$(".Reviews .el .actions a.reply").click(function() {
		Comment = $(this).parent().parent();
		CommentId = Comment.attr('comment')

		$(".ReplyCommentDiv").remove();						//Remove previously opened reply comment boxes
		$(".Reviews .el.current").removeClass('current');	//remove hightlight of previously opened reply comment boxes
		
		AddComment = $(".AddCommentDiv").clone().removeClass("AddCommentDiv").addClass("ReplyCommentDiv");
		AddComment.find("input[type=submit]").val('Ответить');
		AddComment.find("form").append("<input type='hidden' name='comment' value='"+CommentId+"'>");
		AddComment.insertAfter( Comment ).show();
		//alert(AddComment.find("input[name=comment]").val());
		Comment.addClass('current');	//Hightlight this comment
		$(".AddCommentDiv").hide();		//Hide the add comment box in bottom of the screen
		
		return false;
	});
	
	$("#AddCommentBox").click(function() {
		$(".ReplyCommentDiv").remove();
	});
	*/
});


