$(function() {
	jQuery.easing.def = 'easeInOutExpo';
	var cook = $.cookie("client");
	if (cook == "1") {
		$('#clients').attr('class','open');
		$('#clientsWrap').css("height","48px");
		$('#clientsZone').css("background-position","0 bottom");
		$("#clientsZone").toggle(
			function() { 
				$('#clientsWrap').animate({height:0, opacity:"0"}, 512);
				$('#clients').animate({top:-48, opacity:"0"}, 512);
				$('#clientsZone').css("background-position","0 top");
				$.cookie("client", "0", 0, '/');
			}
			,function() {
				$('#clientsWrap').animate({height:48, opacity:"1"}, 512);
				$('#clients').animate({top:0, opacity:"1"}, 512);
				$('#clientsZone').css("background-position","0 bottom");
				$.cookie("client", "1", 0, '/');
				}
			);
		} 
	else  {
		$('#clients').attr('class','hidden');
		$('#clientsWrap').css("height","0px");
		$("#clientsZone").toggle(
			function() {
				$('#clientsWrap').animate({height:48, opacity:"1"}, 512);
				$('#clients').animate({top:0, opacity:"1"}, 512);
				$('#clients').attr('class','open');
				$('#clientsZone').css("background-position","0 bottom");
				$.cookie("client", "1", 0, '/');
				},
			function() {
				$('#clientsWrap').animate({height:0, opacity:"0"}, 512);
				$('#clients').animate({top:-48, opacity:"0"}, 512);
				$('#clientsZone').css("background-position","0 top");
				$.cookie("client", "0", 0, '/');
				})
		};
	return false;
});

