$(document).ready(function(){
	$("a#fancy_img").fancybox({
		'hideOnContentClick': true,
		'overlayShow'	:	true,
		'overlayOpacity': 0
	});

	$("a.fancy_group").fancybox({
		'hideOnContentClick': true,
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600,
		'speedOut'		:	200,
		'overlayShow'	:	true,
		'overlayOpacity': 0
	});

	$('a[href$="jpg"], a[href$="jpeg"], a[href$="gif"], a[href$="png"], a[href$="JPG"], a[href$="JPEG"], a[href$="GIF"], a[href$="PNG"]').fancybox({
		'titlePosition': 'inside',
		'overlayShow'	:	true,
		'overlayOpacity': 0
	});

	$(".scrollable").scrollable({
		size: 3,
		circular: true
	});
});
