
$(function() {
if (!navigator.userAgent.match(/Mobile/i) || !navigator.userAgent.match(/Safari/i)) {
	$("a.fancybox").click(function(e) {
		var href = $(this).attr("href");
		if (/\.(png|jpg|gif)$/i.test(href))
			$.fancybox({href: href});
		else
			$.fancybox({ width: 775, height: 600, href: href, type: 'iframe', titleShow: false, autoScale: true, centerOnScroll: true });
		
		e.stopPropagation();
		return false;
	});
}
});

