var help_snippet = '';
var help_documentation = '';
$(document).ready(function() {
	help_documentation = $('#help_text').html();
	help_snippet = $('#help_text > p:first').html() + '<a id="expand_help">More...</a>';
	$('#help_text').html('<p style="min-height:35px">'+help_snippet+'</p>');
	$('#expand_help').click(function() {
		$('#help_text').html(help_documentation);
		if ($('#show_help').is(":visible")) $('#show_help').hide();
	});
	$('#show_help').click(function() {
		if ($('#expand_help').is(":visible")) $('#expand_help').click();
		else $('#page_help').show('slow');
		$(this).hide('slow');
	});
	$('#hide_help').click(function() {
		$('#page_help').hide('slow');
		$('#show_help').show('slow');
		if (!$('#expand_help').is(":visible")) $('#expand_help').click();
	});
	$('.show_help').click(function() { $('#show_help').click(); });
});
