(function() {

  $(function() {
    var rollovers;
    rollovers = ["#logo .rollover", ".social .rollover"];
    $(rollovers.join(", ")).animate({
      opacity: 0
    }, 300);
    $("#logo, .social a").bind("mouseenter", function() {
      $(".rollover", this).stop();
      return $(".rollover", this).animate({
        opacity: 1
      }, 300);
    });
    $("#logo, .social a").bind("mouseleave", function() {
      $(".rollover", this).stop();
      return $(".rollover", this).animate({
        opacity: 0.01
      }, 600);
    });
    $(".menu a").dMHover("color", "#d5dAf6", "#B5BAC6");
    $("#contacto button").bind("mouseenter", function() {
      $(this).stop();
      return $(this).animate({
        opacity: 1
      }, 300);
    });
    return $("#contacto button").bind("mouseleave", function() {
      $(this).stop();
      return $(this).animate({
        opacity: 0.75
      }, 600);
    });
  });

}).call(this);

