$(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"); }
	);
});







