jQuery.noConflict();
     
	jQuery(document).ready(function() {
	// hides the slickbox as soon as the DOM is ready (a little sooner that page load)
	jQuery('#loginbox').hide();
		
	// toggle the slickbox on click
	jQuery('#loginact').click(function() {
	jQuery('#loginbox').slideToggle(625);
	return false;
	});
	
	
	
	jQuery('#list-activate').toggle(function() {
		jQuery('#client-list-wrap').animate({height:2280},'slow',function(){ /* optionally do stuff once animation finishes */});
		},function(){
		jQuery('#client-list-wrap').animate({height:750},'slow',function(){ /* optionally do stuff once animation finishes */});
	return false;
	});
});
