$(document).ready(function(){

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

	$("#forum_submit").click(function(){
		$("#forum_submit").hide();

		//	display the 'loading' gif;
		$("#myforumspan").html('<img src="'+TemplateP+'/images/ajax-loader.gif" alt="Loading" id="loading" />').show();

		var forumTxt = $("#forum_txt").val();
	
        // user entry
        $.post( MELODYURL2+"/forum.php", { forum_txt: forumTxt },
                function(data){

                    if(data.cond == true)
                    {
                        $("#forumform").slideUp("normal", function() {
                            $("#myforumspan").text(data.msg).show();

                            //	preview
                            if(data.preview == true)
                            {
                                $("#preview_forum_entry").html(data.html).fadeIn(700);
                            }
                        });

                    }
                    else if(data.cond == false)
                    {
                        $("#forum_submit").show();
                        $("#myforumspan").text(data.msg).show();
                    }

                },"json"
             );
	
      return false;

	});
});
