function init()
{
	$("#help > .header").toggle(show_help, hide_help);
}

function show_help()
{
	$("#help > .links").slideDown("fast");
	$("#help > .header > .status").text("[ - ]");
}

function hide_help()
{
	$("#help > .links").slideUp("fast");
	$("#help > .header > .status").text("[ + ]");
}