jQuery.noConflict();
jQuery(document).ready(function($){

  $("#triggers a").overlay({

    target: '#gallery',
    expose: '#f1f1f1'

  }).gallery({

    speed: 800
  });
  
  $('#triggers a').hover( function() {
    $(this).find("img").animate({
      width: 75,
      height: 75,
      top: -5,
      left: -5
    }, 100, 'linear');
  }, function(){
    $(this).find("img").animate({
      width: 69,
      height: 69,
      top: 0,
      left: 0
    }, 100, 'linear');
  });
  

});