jQuery(document).ready(function() {
	$("a.fancy-img").click(function() {
		$.fancybox({
				'padding'		: 0,
				'autoScale'		: true,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: this.title,
				"href"			: this.href
			});

		return false;
	});
});
