$(document).ready(function() {
	// hides the slickbox as soon as the DOM is ready
	// (a little sooner than page load)
	$('#loginbar').hide();
		
	// shows the slickbox on clicking the noted link
	$('a#loginbar-open').click(function() {
		$('#loginbar').slideDown('slow');
		        return false;
	});
		
	// hides the slickbox on clicking the noted link 
	$('a#loginbar-close').click(function() {
		$('#loginbar').slideUp('slow');
		        return false;
	});
});