// JavaScript Document

jQuery(document).ready( init );

function init()
{
	$('#navigator').hide();
	$('#toolbar').hide();
	$('#toolareaclose').hide();
	$('#toolareabutton').mouseover(tools_show);
	$('#toolareaclose').click(tools_hide);
}

function tools_show()
{
	$('#toolbar').show("fast");
	$('#navigator').show("fast");
	$('#toolareaclose').show("fast");
	$('#toolareabutton').hide();
}

function tools_hide()
{
	$('#toolbar').hide("fast");
	$('#navigator').hide("fast");
	$('#toolareaclose').hide("fast");
	$('#toolareabutton').show();
}		
