  $(document).ready(function() {
            $("#artists").click(function () {
            if ($("#dnav").is(":hidden")) {
                $("#dnav").slideDown("slow");
                $("#artists").css("background-color","#C9DCD7")
            } else {
                 //$("#dnav").hide();
                 $("#dnav").slideUp("slow");
                 $("#artists").css("background-color","white")
                }
            });
          
          if( $("a.gallery").length > 0)
          {
          
          
                    $("a.gallery").fancybox();
                      
                      
                    
                    
                     $("a.gallery img")
                    .mouseover(function() {
               
                        var src = $(this).attr("src").replace("off", "on");      
                        $(this).attr("src", src);
                    })
                    .mouseout(function() {
                        var src = $(this).attr("src").replace("on", "off");
                        $(this).attr("src", src);
                    });
          
          }
            
        
        }); 
