$(document).ready(function() {
$('.images a').attr('rel', 'gallery1'); //adds the 'rel' attribute to anchor elements in our div wrapper
            
    $('a:has("img")').fancybox({
        'transitionIn' : 'elastic',
        'centerOnScroll' : true,
        'overlayColor' : '#000',
        'titlePosition' : 'over'
    }); // enable fancybox on all anchor elements with img child.
});
