/* ########################################################################## */
/* FancyBox */

$(document).ready(function() {
	
	$("a.fancyImg").fancybox({
		'transitionIn'    :   'fade',
		'transitionOut'   :   'fade',
		'speedIn'         :   1000, 
		'speedOut'        :   1000, 
		'overlayShow'     :   true, 
		'overlayColor'    :   '#333333',
		'titlePosition'   :   'over',
		'padding'         :   '5',
	});
	
	$("a.fancyGal").fancybox({
		'transitionIn'    :   'fade',
		'transitionOut'   :   'fade',
		'speedIn'         :   1000, 
		'speedOut'        :   1000, 
		'overlayShow'     :   true, 
		'overlayColor'    :   '#333333',
		'cyclic'          :   'cyclic',
		'titlePosition'   :   'over',
		'padding'         :   '5',
	});
	
	$("a.fancyTxt").fancybox({
		'transitionIn'    :   'fade',
		'transitionOut'   :   'fade',
		'speedIn'         :   1000, 
		'speedOut'        :   1000, 
		'overlayShow'     :   true,
		'overlayColor'    :   '#333333',
		'titleShow'       :   false,
	});
	
});

     
/* FancyBox */
/* ########################################################################## */
