﻿$(function() {
    $('.ts_sigla_hover').hover(
        function() {
            $(this).stop().animate({ "opacity": 0 }); 
        },
        function() {
            $(this).stop().animate({ "opacity": 1 });
        }
    );
});

$(function() {
    $('.in_curand_hover').hover(
        function() {
            $(this).stop().animate({ "opacity": 0 });
        },
        function() {
            $(this).stop().animate({ "opacity": 1 });
        }
    );
});


// Meniu

$(function() {
    $('.menu_acasa_hover').hover(
        function() {
            $(this).stop().animate({ "opacity": 0 });
        },
        function() {
            $(this).stop().animate({ "opacity": 1 });
        }
    );
});

$(function() {
    $('.menu_deceunbroker_hover').hover(
        function() {
            $(this).stop().animate({ "opacity": 0 });
        },
        function() {
            $(this).stop().animate({ "opacity": 1 });
        }
    );
});

$(function() {
    $('.menu_avantaje_hover').hover(
        function() {
            $(this).stop().animate({ "opacity": 0 });
        },
        function() {
            $(this).stop().animate({ "opacity": 1 });
        }
    );
});

$(function() {
    $('.menu_servicii_hover').hover(
        function() {
            $(this).stop().animate({ "opacity": 0 });
        },
        function() {
            $(this).stop().animate({ "opacity": 1 });
        }
    );
});

$(function() {
    $('.menu_portofoliu_hover').hover(
        function() {
            $(this).stop().animate({ "opacity": 0 });
        },
        function() {
            $(this).stop().animate({ "opacity": 1 });
        }
    );
});

 $(function () {
        $('.menu_noutati_hover').hover(
        function () {
            $(this).stop().animate({ "opacity": 0 });
        },
        function () {
            $(this).stop().animate({ "opacity": 1 });
        }
    );
 });

$(function() {
    $('.menu_contact_hover').hover(
        function() {
            $(this).stop().animate({ "opacity": 0 });
        },
        function() {
            $(this).stop().animate({ "opacity": 1 });
        }
    );
});

