/* meniul Altele ..*/
$(document).ready(function(){
    $('#more').hover(
        function(){
              $(this).find('div#panel-more').show();
              $(this).find('div#more_hover').show();
        },
        function(){
              $(this).find('div#panel-more').hide();
              $(this).find('div#more_hover').hide();
        }
    );
})

$(document).ready(function(){
    $('#user-login').hover(
        function(){
              $(this).find('div#user-meniu').show();
        },
        function(){
              $(this).find('div#user-meniu').hide();
        }
    );
})
