﻿    $(document).ready(function() {
    $(".zoomableImg").fancybox();

    $(".zoomableImg").hover(function() {
        $(this).addClass('hover');
    }, function() {
        $(this).removeClass('hover');
    });
    });
