function favorities(video_id){
    $("#video_action_msg").html('<img src="'+TemplateP+'/images/ajax-loader.gif" alt="Loading" id="loading" />').show();
    $.post( MELODYURL2+"/ajax_video_actions.php", { action: 'favorities', vid: video_id},
   					function(data){

                        $("#video_action_msg").html(data).fadeIn(700);
   					},"json"
				 );
}

function report_comment(comment_id){
    $("#r_c_"+comment_id).html('<img src="'+TemplateP+'/images/ajax-loader.gif" alt="Loading" id="loading" />').show();
    $.post( MELODYURL2+"/ajax_video_actions.php", { action: 'report_comment', comment_id: comment_id},
   					function(data){
                        $("#r_c_"+comment_id).html(data).show();
   					},"json"
				 );
}

$(document).ready(function(){

	$("#bad_link_block").hide();

	$("#bad_link_submit").click(function(){

		//	display the 'loading' gif;
		$("#video_action_msg").html('<img src="'+TemplateP+'/images/ajax-loader.gif" alt="Loading" id="loading" />').show();
		//	get the info
		var video_id	= $("#bad_vid").val();
		var reason = $("#bad_reason").val();
        $.post( MELODYURL2+"/ajax_video_actions.php", { action: 'bad_link', vid: video_id, reason: reason},
   					function(data){
                        $("#bad_link_block").fadeOut(700);
                        $("#video_action_msg").html(data).fadeIn(700);
   					},"json"
				 );
      return false;

	});
});