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