Drupal.galeria = {};

Drupal.galeria.autoAttach = function() {
  $("#gallery img").hover(
  function() {
    $(this).addClass("over")},
    function() {
      $(this).removeClass("over")
    }
  )
}

if (Drupal.jsEnabled) {
  $(document).ready(Drupal.galeria.autoAttach);
}
