function()

in js/custom.js [349:378]


            function () {

                /*var centerArticle = ($('a section', this).height()/2 - $('a div span', this).outerHeight(true)/2) + 4; 
                $('a div', this).css('padding-top', centerArticle+'px');*/

                var fromTop = ($('section img', this).height()/2 - $('.iconLink', this).outerHeight()/2) ;
                $('.iconLink', this).css('margin-top', fromTop);


                if ($.browser.chrome || $.browser.webkit ) {

                    $(this).find('section img').css('-webkit-transform', 'scale(1.5) ');
                }
                else if ($.browser.mozilla){

                    $(this).find('section img').css('-moz-transform', 'scale(1.5) rotate(0.1deg)');

                }else if($.browser.opera){

                    $(this).find('section img').css('-o-transform', 'scale(1.5)'); 
                    
                }else if($.browser.msie){

                    $(this).find('section img').css('-ms-transform', 'scale(1.5)'); 

                } 



            },