$(document).ready(function() {
    $('.hoverable').hover(function() {
      $(this).addClass('onhover');
    }, function() {
      $(this).removeClass('onhover');
    });
    $("#gallery a").fancybox({});
});



