$(document).ready(function(){
	$("a.lightbox").fancybox({
		'titleShow'		: false,
        'transitionIn'        : "none",
        'transitionOut'       : "none", 
		'autoScale'     : false,
		'margin'		: 20,
		'padding'		: 0, 
		'width'			: 400,
		'height'		: 480,
		'hideOnOverlayClick': false,
		'scrolling'          : 'no', 
		'showCloseButton'	: false
	}); 

	$(".exitLightbox").click(function(){
	  $.fancybox.close();
	});
});
