$(document).ready(function(){
	// Hide the toolbar minimize div right at load
	$('#toolbar_closed_wrapper').css({height:0});
	// Animate & show the toolbar after the page loads
	$('#toolbar_container').css({height:0}).animate({height:100}, 'slow');
	// Hide the toolbar when the hide button is clicked
	$('#toolbar_close').click(function(){
		$('#toolbar_container').animate({height:0}, 'slow', function(){
			$("#toolbar_closed_wrapper").animate({height:32}, 'slow');
		});		
	});
	$('#toolbar_closed').click(function(){
		$('#toolbar_closed_wrapper').animate({height:0}, 'slow', function(){
			$("#toolbar_container").animate({height:100}, 'slow');
		});		
	});
});
