$(function() {
	
$('a.viewer').click(function() 
{
	$.fancybox({
		'padding'		: 0,
		'autoDimensions': true,
		'transitionIn'	: 'none',
		'transitionOut'	: 'none',
		'title'			: this.title,
		'width'			: 500,
		'height'		: 450,
		'href'			: this.href,
		'type'			: 'iframe',
		'autoScale'		: true
	});

	return false;
});

});