$(document).ready(function() {
	/* This is basic - uses default settings */ 
	$("a#test1").fancybox(); 
	/* Using custom settings */ 

	$("a.gallery").fancybox({ 
		'zoomOpacity': true,
		'imageScale': true,
		'centerOnScroll': true,
		 'zoomSpeedIn': 500, 
		 'zoomSpeedOut': 200, 
		 'overlayShow': false 
	 }); 
	
	$("a.catalogDescription").fancybox({ 
		'zoomOpacity': true,
		'imageScale': true,
		'centerOnScroll': true,
		 'zoomSpeedIn': 500, 
		 'zoomSpeedOut': 200, 
		 'overlayShow': false 
	 }); 

}); 
