
runOnLoad(function(){

if( (BrowserDetect.browser=='Firefox' && BrowserDetect.version>=3) || (BrowserDetect.browser=='Opera' && BrowserDetect.version>9) || (BrowserDetect.browser=='Explorer' && BrowserDetect.version>=6) ) {
$('.zdj_kat').hover(
    function(){
        $(this).animate({width: '75px',height: '75px'}, 'fast');
    },
    function(){
        $(this).animate({width: '68px',height: '68px'}, 'fast');
    }
);
}
});

