dispatch({
  "": function(){
    $(".hover").each(function(){
      var img = $(this);
      var src = $(this).attr("src");
      img.hover(function(){
        img.attr("src", src.replace(".png", "_h.png"));
      }, function(){
        img.attr("src", src);
      });
    });

    $("#mainmenu > li").each(function(){
      var img = $(this).find("img");
      var popup = $(this).find("ul");

      $(this).hover(function(){
        popup.show();
      }, function(){
        popup.hide();
      });
    });

    if(typeof DD_belatedPNG !== "undefined"){
      DD_belatedPNG.fix("img, .pngfix");
    }
  }
});

