1 <script type="text/javascript"> 2 3 var BoxHeight=$('.t_c').css("height"); 4 //$('.t_c').stop().animate({'height':'10px'}); 5 $('.t_c').css('height','10px'); 6 $('#flickr_toggle').toggle(function(){ 7 alert("open"); 8 $('.t_c').stop().animate({'height':BoxHeight}); 9 },function(){ 10 alert("close"); 11 $('.t_c').stop().animate({'height':'10px'}); 12 }); 13 14 </script>