$(document).ready(function(){
	$('.dropdown_cont').each(function () {		
		$(this).attr('hhh', $(this).height());		
	});		
	$('.dropdown_cont').hide().height(0);
    $('.dropdown_wrapper').hover(
      function () {
        $(this).addClass('active_tab'); 	
        $('.dropdown_cont', this).stop().show().animate({height:$('.dropdown_cont', this).attr('hhh')}, 300);
      }, 
      function () {
        obj = this;	  
		$(obj).removeClass('active_tab');
	   	$('.dropdown_cont', this).stop().animate({height:0}, 300, function(){$('.dropdown_cont').hide(); });
      }
    );
});
