/**
 * @author grozycki
 */
$(document).ready(function(){
    $('#nav a').hover(function(){
        $(this).animate({
            opacity: 0
        }, "slow");
    }, function(){
        $(this).animate({
            opacity: 1
        }, "slow");
    });
    
    $('.gallery a, a.lightbox').lightBox();
});

