function toggleMCE(id)
{
	if ($(id+'checkbox').get('checked') == true)
	{
		var extend = $(id).getStyle('margin-bottom').toInt() + 27;
		$(id).setStyle('margin-bottom', extend);
		$(id+'checkbox').set('checked', false);
		$(id+'button').set('value', 'Switch to Text Editor');
		$(id+'save').fade('out');
		tinyMCE.get(id).hide();
	}
	else if ($(id+'checkbox').get('checked') == false)
	{
		var extend = $(id).getStyle('margin-bottom').toInt() - 27;
		$(id).setStyle('margin-bottom', extend);
		$(id+'checkbox').set('checked', true);
		$(id+'button').set('value', 'Edit in <html> Mode');
		$(id+'save').fade('in');
		tinyMCE.get(id).show();
	}
	else
	{
	}
}


function mceActivate()
{
	$$('.htmlbtn').addEvent('click', function(){
		toggleMCE(this.get('alt'));
	});
}
