$(document).ready(function (){
	$('a.lightbox').each(function (){
		if(isMobile()) {
			$(this).attr('target', '_blank');
		} else {
			$(this).fancybox({
				'titleShow': false,
				'type' : 'iframe',
				'width' : '90%',
				'height' : '90%',
			});
		}
	});
});

