$(document).ready(function(){
    $('a.photo-detail').fancybox();

    $('#topnav li').mouseenter(function(){
        if($(this).find('ul').length > 0){
            $(this).find('ul').slideDown(200);
        }
    }).mouseleave(function(){
        if($(this).find('ul').length > 0){
            $(this).find('ul').slideUp(200);
        }
    });
});
