// my functions

$(document).ready(function() {
	/* Apply fancybox to multiple items */
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity'	:	0.5,
		'overlayColor' : '#000',
		'titlePosition':  'inside'
	});
});


