$(document).ready(function(){

    $('#navmenu div a:not(.active) img').mouseover(function(){
        var new_src = $(this).attr("src").replace(".gif","-on.gif");
        $(this).attr("src",new_src);
    });

    $('#navmenu div a:not(.active) img').mouseout(function(){
        var new_src = $(this).attr("src").replace("-on.gif",".gif");
        $(this).attr("src",new_src);
    });

    $("a.gallery").fancybox({
        'zoomSpeedIn': 300,
        'zoomSpeedOut': 300,
        'overlayShow': false
    });
    
    
});
