﻿$(document).ready(function()
{	
	
    
    // fancybox code
	$("a.fancybox").fancybox({
		"cyclic" 		: 	true,
		"titlePosition" :   "inside",
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		"opacity"		:   true	
	});
	$("a:has('img'):not(.ChSvcA):not(.nofancybox)").fancybox({
		"cyclic" 		: 	true,
		"titlePosition" :   "inside",
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		"opacity"		:   true	
	});
	$("a#inline").fancybox({
		"cyclic" 		: 	true,
		"titlePosition" :   "inside",
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		"opacity"		:   true,
		"autoDimensions":	false,
		"scrolling"		:	'auto',
		"width"			: 	950,
		"height"		: 	'auto'	
	});
});
