jQuery(document).ready(function($) {
$('#nabidka-menu li a').unbind('hover').hover(function(){
   $(this).animate({
   top: '-=10'
   });
}, function(){
   $(this).animate({
   top: '+=10'
   });
});


$('.gallery-item a img').unbind('hover').css('position', 'relative').hover(function(){
    $(this).animate({
        width: '+=5px',
        top: '-=5px'
    });
    $(this).parent().parent().animate({
        marginBottom: '-=5px'
    });
}, function(){  
    $(this).css('position', 'relative').animate({
        width: '-=5px',
        top: '+=5px'
    });
    $(this).parent().parent().animate({
        marginBottom: '+=5px'
    });
});


/*
$('.post a img').unbind('hover').css('position', 'relative').hover(function(){
    $(this).animate({
        width: '+=5px',
        top: '-=5px'
    });
    $(this).parent().parent().animate({
        marginBottom: '-=5px'
    });
}, function(){  
    $(this).css('position', 'relative').animate({
        width: '-=5px',
        top: '+=5px'
    });
    $(this).parent().parent().animate({
        marginBottom: '+=5px'
    });
});
*/


$('#button-01').unbind('hover').hover(function(){
    $(this).animate({
        top: '+=5px'
    }, 200);
}, function(){  
    $(this).animate({
        top: '-=5px'
    }, 200);
});
});
