(function($){
    $.fn.add_tri_fig= function(){
        this.hover(
            function () {
                $(this).addClass("hovered");
                //------------
                
                var dlinp=$(this).children('.box-mainList-tri-fig').children('.mainList-tri-fig').children("p").height();
               // $(this).children('.mainList-tri-fig').css('top','130px');
                $(this).children('.box-mainList-tri-fig').children('.mainList-tri-fig').stop().animate({
                    'top': 112-dlinp+'px'
                },300);

            },
            function () {
                $(this).removeClass("hovered");
                //------------
                $(this).children('.box-mainList-tri-fig').children('.mainList-tri-fig').stop().animate({
                    'top': '139px'
                },300);
            }
            );
        $(".box-mainList-tri-fig").click(
            function()
            {
                $(this).next('a').trigger('click');

            });
        return this;
    }

})(jQuery);

//call for all page
$(function(){
    $(".mainList>li").add_tri_fig();
    //--------------------------------------------------------------
    $('.footerIcons>li').click(function(){
        var href=$(this).children('a').attr('href');
        window.open(href,'_self');

    });
    //------------------------------------------------------
    $('.footerIcons>li').hover(function(e){

        $(this).children('a').addClass("hover");
    },
    function(e){

        $(this).children('a').removeClass("hover");
    });
});

/********************************/
