$(document).ready(function(){

// select the thumbnails and make them trigger our overlay
$(".graphic a.zoom").overlay({

	// each trigger uses the same overlay with the id "gallery"
	target: '#overlayTarget',
	// optional exposing effect
	expose: '#F2F7FB'

// let the gallery plugin do its magic!
}).gallery({

	// the plugin accepts its own set of configuration options
	speed: 800
});

});
