// fancybox

$(document).ready(function() {
	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});

	/* Apply fancybox to multiple items */
	
	$("a.group, .gallery a").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'none',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'titlePosition'	:	'over'
	});
	
	$("a#calendar-view").fancybox({
		'transitionIn'	:	'none',
		'transitionOut'	:	'none',
		'speedIn'		:	800, 
		'speedOut'		:	600,
		'scrolling'		:	'no',
		'hideOnOverlayClick' : false
	});
	
	// manipulate the info block
	$('.feature-content p').each(function(){
		content = $(this).html();
		$(this).remove();
	});
	$('.feature-content').append(content);
	$('.feature-content img').after('<span class="mask" />');
	$('.feature-content img, .feature-content span').wrapAll('<div class="image" />');
	$('.gallery a').each( function() {
		$(this).attr('rel','gallery');
		return this;
	});
	
});
