$(document).ready(function() {
		
	/* This is basic - uses default settings */
	
	$("a#single_image").fancybox();
	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});
	
	/* Apply fancybox to multiple items */
	
	$(".gigTrigger").fancybox({
		'width'			: 	350,
		'height'		:	500,
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'type'			:	'iframe',
		'overlayColor'	:	"#000",
		'centerOnScroll':	true,
	});
	
	$(".newsTrigger").fancybox({
		'width'			: 	515,
		'height'		:	500,
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'type'			:	'iframe',
		'overlayColor'	:	"#000",
		'padding'		:	0,
		'centerOnScroll':	true,
	});
	
	$(".commentTrigger").fancybox({
		'width'			: 	310,
		'height'		:	520,
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'type'			:	'iframe',
		'overlayColor'	:	"#000",
		'centerOnScroll':	true,
		'hideOnOverlayClick': false,
		'onClosed': function() {parent.location.reload(true); ;}
	});
	
	$(".musicTrigger").fancybox({
		'width'			: 	515,
		'height'		:	40,
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'type'			:	'iframe',
		'overlayColor'	:	"#000",
		'centerOnScroll':	true,
	});
	
});
