$(document).ready(function client() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
$("#clientContainer").hide();
	$("#clientArea a").toggle( 
	function () { $("#clientContainer").slideDown("fast"); },
	function () { $("#clientContainer").slideUp("fast"); }
	);
});








