$(document).ready(function() {
    $("a[rel^='lightbox']").prettyPhoto({
        animationSpeed: 'fast',
        opacity: 0.5,
        theme: 'dark_rounded'
    });
    $("#nav li").hover(function(){
        $(this).siblings().children('ul').hide();
        $(this).children('ul').addClass('hovered').show();
    }, function() {
        $(this).children('ul').removeClass('hovered');
        $(this).oneTime(500, 'remover', function() {
            if ($(this).children('ul').hasClass('hovered') == false)
                $(this).children('ul').hide();
        });
    });
    $("#nav li + ul").addClass('hovered');
});

