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