$(document).ready(function(){
	$(document).pngFix();

	// init lightbox
	$(".lightboxLink").fancybox({
			'type'				: 'iframe',
			'margin'			:  0,
			'padding'			:  5,
			'width'				:  732, // don't put this in a string unless you're doing a percent
			'height'			:  470, // don't put this in a string unless you're doing a percent
			'titleShow'			:  false,
			'transitionIn'		: 'fade',
			'transitionOut'		: 'fade',
			'speedIn'			: 1000,
			'speedOut'			: 500,
			'overlayOpacity'	: '0.8',
			'overlayColor'		: '#000',
			'scrolling'			: 'no' // change this to yes if you have content taller than the above height
		});

	$(".lightboxLink_scroll").fancybox({
			'type'				: 'iframe',
			'margin'			:  0,
			'padding'			:  5,
			'width'				:  752, // don't put this in a string unless you're doing a percent
			'height'			:  610, // don't put this in a string unless you're doing a percent
			'titleShow'			:  false,
			'transitionIn'		: 'fade',
			'transitionOut'		: 'fade',
			'speedIn'			: 1000,
			'speedOut'			: 500,
			'overlayOpacity'	: '0.8',
			'overlayColor'		: '#000',
			'scrolling'			: 'yes' // change this to yes if you have content taller than the above height
		});
});