$(document).ready(function(){
    $("#menu li").hover(
        function(){ $("ul", this).fadeIn("fast"); }, 
        function() { $("ul", this).fadeOut("fast"); } 
    );
    if (document.all) {
        $("#menu li").hoverClass("sfHover");
    }
    var options = {
                xOffset: 94,
                yOffset: 148,
                position: "right",
                title: false
    };
                
    $('.zoom').jqzoom(options);
    
    $('#album-photographique #thumbs a').lightBox({
        txtOf: 'de'
    });
});


$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c); },
            function() { $(this).removeClass(c); }
        );
    });
};
