$(document).ready(function(){

	$('#ForumAddPostForm').submit(function() {

		$.post("/forums/add_post", { 
			'data[Forum][forum_id]': $("#ForumForumId").val(),
			'data[Forum][title]': $("#ForumTitle").val(),
			'data[Forum][body]': $("#ForumBody").val(),
			'data[Forum][parent_id]': $("#ForumParentId").val()
			},
			function(data){
				if (data.forum_post_id) {
					window.location = '/forums/add_post/' + data.forum_post_id;
				} else {
					$('#post_message').html(data.error).addClass('error-message');
				}
			}, "json");
			return false;
	});
	
	$('.reply_with_quote').click(function() {
		
		var quote_id = $(this).attr('id').split('_')[1];			
		
		for_textarea = '[quote]' + $('#body_' + quote_id).html().replace(/(\<br\>)+/g,'\n').replace(/\n{3}/g,'\n') + '[/quote]';
		$('#ForumBody').text(for_textarea);
		
		return true;
	});
	
});
