<script type="text/javascript"> var BoxHeight=$('.t_c').css("height");
//$('.t_c').stop().animate({'height':'10px'});
$('.t_c').css('height','10px');
$('#flickr_toggle').toggle(function(){
alert("open");
$('.t_c').stop().animate({'height':BoxHeight});
},function(){
alert("close");
$('.t_c').stop().animate({'height':'10px'});
}); </script>