$(document).ready(function(){
    
    $('.needtoexpand').hover(
        function(){
           
            //
            //$(this).parent().find('.needtoexpand').css('height','0px');
            //$(this).parent().find('.needtoexpand').animate({height:height},500);  
             
             
//            var height  =   $(this).parent().find('.needtoexpand ul').innerHeight(); 
//            console.log(height);
//            $(this).parent().find('.needtoexpand').css('height','0px');
            $(this).parent().find('.needtoexpand').addClass('shadowmenu'); 
              $(this).parent().find('.needtoexpand ul').slideDown(); 
                        

           
            
        },
        function(){
            var obj = $(this);
           $(this).parent().find('.needtoexpand ul').slideUp(400,function(){
               obj.parent().find('.needtoexpand').removeClass('shadowmenu');  
           }); 
            

        }
    );
    
});
