$(document).ready(function() {

	$("#fight-details").hide();

	$(".fight-content-toggle").click(function(){
		$(this).parent().next(".fight-content-holder").toggle();
		return false;
	});

	$("#report-broken-video a").click(function(){
		id = $(this).attr("rel");
		$(this).parent().load("/apps/broken_video.php?fight=" + id);
		return false;
	 });
	
	$("#comment-form").submit(function(){
		$.post("/apps/comment_add.php", { member_id: $("#comment-member-id").attr("value"),type_id: $("#comment-type-id").attr("value"),parent_id: $("#comment-parent-id").attr("value"), comment: $("#comment-textarea").val() }, function(data){
			$(".comment").remove();
			$("#comments").load("/apps/comments_get.php?type_id=" + $("#comment-type-id").attr("value") + "&parent_id=" + $("#comment-parent-id").attr("value") + "&member_id=" + $("#comment-member-id").attr("value"));
			$("#comment-nav #comment-count").val($("#comment-nav #comment-count").val() +1);
		});
		$("#comment-textarea").val("");
		return false;
	 });

});