/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
jQuery(function() {
    jQuery('#post_content').wysiwyg({
        controls: {
            removeFormat : { visible : false }
        }
    });
});

function quote_user_click( action_url ) {
	jQuery.get( action_url, function( quoted ) {
		var previous_content = jQuery('#post_content').wysiwyg('getContent');
        jQuery('#post_content').wysiwyg('setContent', quoted );
        document.location = '#post_content_anchor';
	});
}
