var post_id = null;

jQuery().ready(function(){

	$('.answer_link').click(function(){
		id = $(this).attr('id').split('i')[1];
		field = 'content';
		$('#parent_id').attr('value',id);
		$('#title').attr('value',$('#post_'+id + ' h3').text());
		
		if (id != post_id)
		{
			if (tinyMCE.getInstanceById(field) != null)
			{
				tinyMCE.execCommand('mceRemoveControl', false,field);
			}
			$('#message_form').hide();
			post_id = id;
		}		
		
		if ($('#message_form').css('display') == 'none')
		{
			$('#form_container_'+id).append($('#message_form'));
			$('#message_form').show();
			if (tinyMCE.getInstanceById(field) == null)
			{
				tinyMCE.execCommand('mceAddControl', false,field);
			}			
		}
		else
		{
			if (tinyMCE.getInstanceById(field) != null)
			{
				tinyMCE.execCommand('mceRemoveControl', false,field);
			}
			$('#message_form').hide();
		}
		// return false;
	});
	
	$('.subscribe_alert').click(function(){
		$(this).load(this.href);
		return false;
	});
})

tinyMCE.init({
  mode: "none",
  language: "fr",
	theme:"advanced",
	theme_advanced_resizing:"true",
	theme_advanced_resize_horizontal:"false",
  theme_advanced_toolbar_location: "top",
  theme_advanced_toolbar_align: "left",
  theme_advanced_path_location: "bottom",
	width:"700px",
	apply_source_formatting:true,
  plugins: "advimage",
  relative_urls: false,
  debug: false,  
	theme_advanced_buttons1:"bold,italic,underline,strikethrough,|,bullist,numlist,outdent,indent,|,sub,sup,hr,|,link,unlink,|,cleanup,removeformat,|,undo,redo",
	theme_advanced_buttons2:"",
	file_browser_callback:"sfMediaLibrary.fileBrowserCallBack"	
});
