/* 
** This will enable a dialog for 
** replying quickly to a post.
*/
$(document).ready(function()
{
	if (!$('.reply')) return false;
	$('.reply').each(function()
	{
		$(this).click(function()
		{
			$.get($(this).attr('href'), 
			function(data)
		    {
				$('#dialog_content').html( data );	
				   $.ui.dialog.defaults.bgiframe = true;
				   $('#dialog').dialog({
					height: 400,
					width: 600
				});
				initAjaxMCE();
			});
			return false;
		});
		
	});
});