﻿// 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'			: 800,
		'height'			: 400,
		'autoScale'		: true,
		'transitionIn'		: 'fade',
		'transitionOut'	: 'fade',
		'type'			: 'iframe'
	});
	
	// video modal
	$(".videogallery").fancybox({
		'overlayOpacity'	: '0.7',
		'overlayColor'		: '#222',
		'padding'			: 15,
		'centerOnScroll'	: true,
		'width'			: 710,
		'height'			: 485,
		'autoScale'		: false,
		'autoDimensions'	: 'true',
		'transitionIn'		: 'fade',
		'transitionOut'	: 'fade',
		'type'			: 'iframe'
	});
});
