$(document).ready(function() {

    $(".link_meniu").hover(
        function() {

            id = $(this).attr("id");
            $('ul#submenu_' + id + ':li').each(function() {
                $(this).css('top', $(this).parent().position().top + 43);
                $(this).css('left', $(this).parent().position().left - 2);
                $(this).show();
            });
        },
        function() {
            $('ul#submenu_' + id + ':li').each(function() {
                $(this).hide();
            });
        }
    );

    $(".menu_button02,.menu_button01").hover(
        function() {
            $(this).stop().animate({
                lineHeight: "30px"
            }, 150);
        },
        function() {
            $(this).stop().animate({
                lineHeight: "46px"
            }, 500);
        }
    );

    $("#gallery_content img").animate({
        "opacity": .7
    });
    $("#gallery_content img").hover(
         function() {
             $(this).stop().animate({ "opacity": 1 });
         }, function() {
             $(this).stop().animate({ "opacity": .7 });
         });

    $("#page_content_footer_sigla").hover(
        function() {
            $(".sigla").fadeOut(700);
        },
        function() {
            $(".sigla").fadeIn(700); 
        }
    );

});

function anuleaza() {
    return;
}