﻿// JavaScript Document
// Studio J FancyBox windows

$(document).ready(function() {
	
	// terms and conditions modal
	$(".termscond").fancybox({
		'overlayOpacity'	: '0.7',
		'overlayColor'		: '#222',
		'padding'			: 0,
		'centerOnScroll'	: true,
		'width'			: '75%',
		'height'			: '85%',
		'autoScale'		: false,
		'transitionIn'		: 'fade',
		'transitionOut'	: 'fade',
		'type'			: 'iframe'
	});

	// art gallery modal
	$(".artgallery").fancybox({
		'overlayOpacity'	: '0.7',
		'overlayColor'		: '#222',
		'padding'			: 12,
		'centerOnScroll'	: true,
		'width'			: 840,
		'height'			: 425,
		'autoScale'		: true,
		'transitionIn'		: 'fade',
		'transitionOut'	: 'fade'
	});
	
	$("a[rel=example_group]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'	: 'none',
		'titlePosition' 	: 'over'
		// 'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
		//	return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		// }
	});

	
	// video modal
	$(".videogallery").fancybox({
		'overlayOpacity'	: '0.7',
		'overlayColor'		: '#222',
		'centerOnScroll'	: true,
		'width'			: 720,
		'height'			: 495,
		'autoScale'		: false,
		'autoDimensions'	: 'true',
		'transitionIn'		: 'fade',
		'transitionOut'	: 'fade',
		'type'			: 'iframe'
	});
});