$(document).ready(function() {
		// hides the slickbox as soon as the DOM is ready
		
		// (a little sooner than page load)
		$('#profile-1').hide();
		
		// shows the slickbox on clicking the noted link  
		$('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;
		});
		$('#profile-3').hide();
		$('a#toggle-profile-3').click(function() {
			$('#profile-3').slideToggle(400);
			return false;
		});
		$('#profile-4').hide();
		$('a#toggle-profile-4').click(function() {
			$('#profile-4').slideToggle(400);
			return false;
		});
		$('#profile-5').hide();
		$('a#toggle-profile-5').click(function() {
			$('#profile-5').slideToggle(400);
			return false;
		});
		$('#profile-6').hide();
		$('a#toggle-profile-6').click(function() {
			$('#profile-6').slideToggle(400);
			return false;
		});
		$('#profile-7').hide();
		$('a#toggle-profile-7').click(function() {
			$('#profile-7').slideToggle(400);
			return false;
		});
		$('#profile-8').hide();
		$('a#toggle-profile-8').click(function() {
			$('#profile-8').slideToggle(400);
			return false;
		});
		$('#profile-9').hide();
		$('a#toggle-profile-9').click(function() {
			$('#profile-9').slideToggle(400);
			return false;
		});
		$('#profile-10').hide();
		$('a#toggle-profile-10').click(function() {
			$('#profile-10').slideToggle(400);
			return false;
		});
});
