$(document).ready(function() {
		// hides the slickbox as soon as the DOM is ready
		
		// (a little sooner than page load)
		$('#SignUp').hide();
		// shows the slickbox on clicking the noted link  
		$('a#toggle-SignUp').click(function() {
			$('#SignUp').slideToggle(400);
			return false;
		});

		$('#profile-1').hide();
		$('a#toggle-profile-1').click(function() {
			$('#profile-1').slideToggle(400);
			return false;
		});

		$('#profile-2').hide();
		$('a#toggle-profile-2').click(function() {
			$('#profile-2').slideToggle(400);
			return false;
		});
});
