$(document).ready(function() {	
    
    $('#nav').livequery(function () {
        $('ul ul', this).hide();
        $('.selected', this).parents('li:last').addClass('active').children('ul').show();
    });
    
    $("#popOut").livequery(function () {
        $(this).fancybox({
            'titlePosition'		: 'inside',
            'transitionIn'		: 'none',
            'transitionOut'		: 'none'
        });
    });
    
    $('.alb').each(function(){
        $('a', this).fancybox({
            'transitionIn'		: 'none',
            'transitionOut'		: 'none',
            'titlePosition' 	: 'over',
            'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
                    return '<span id="fancybox-title-over">Fotografie ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
            }
        });
    });
               
}); 

$("div.flash").livequery(function () {
    $(this).delay(2000).animate({
        "opacity": 0
    }, 2000).slideUp();
});

function goToAnchor(id){
    $('html,body').animate({
        scrollTop: $("#"+id).offset().top
    },'slow');
} 
   


 
     
