function()

in js/custom.js [379:398]


            function () {

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

                    $(this).find('section img').css('-webkit-transform', 'scale(1) ');

                } else if ($.browser.mozilla){

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

                } else if($.browser.opera){

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

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

                }    
            }