$(function(){
	$('#auth').hide();
	$('#mceEditor').focus(function(){
		tinyMCE.execCommand('mceAddControl', false, 'mceEditor');
		$('#auth').show();
	});
});