// JavaScript Document
		$(document).ready(function() {
			/*
			*   Examples - images
			*/
 
			$("a#example1").fancybox({
				'titleShow'		: false
			});
 
			$("a#example2").fancybox({
				'titleShow'		: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic'
			});
 
			$("a#example3").fancybox({
				'titleShow'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none'
			});
 
			$("a#example4").fancybox();
 
			$("a#example5").fancybox({
				'titlePosition'	: 'inside'
			});
 
			$("a#example6").fancybox({
				'titlePosition'	: 'over'
			});
 
			$("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>';
				}
			});
			
			
			$("a.imageGallery").fancybox({
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade'
			});
 
			/*
			*   Examples - various
			*/
 
			$("#various1").fancybox({
				'titlePosition'		: 'inside',
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'
			});
 
			$("#various2").fancybox();
 
			$(".various3").fancybox({
				'width'				: 490,
				'height'			: 150,
				'autoScale'			: false,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'type'				: 'iframe',
				'speedIn'			: 600,
				'speedOut'			: 100
				//'frameWidth'		: 20,
				//'frameHeight'		: 600 
			});
 
			$(".various4").fancybox({
				'width'				: 490,
				'height'			: 250,
				'autoScale'			: false,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'type'				: 'iframe',
				'speedIn'			: 600,
				'speedOut'			: 100
				//'frameWidth'		: 20,
				//'frameHeight'		: 600 
			});
			$(".contactPop").fancybox({
				'width'				: 490,
				'height'			: 480,
				'autoScale'			: false,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'type'				: 'iframe',
				'speedIn'			: 600,
				'speedOut'			: 100
				//'frameWidth'		: 20,
				//'frameHeight'		: 600 
			});
			$(".detailPop").fancybox({
				'width'				: 710,
				'height'			: 1000,
				'autoScale'			: false,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'type'				: 'iframe',
				'speedIn'			: 600,
				'speedOut'			: 100
				//'frameWidth'		: 20,
				//'frameHeight'		: 600 
			});
			$(".printPop").fancybox({
				'width'				: 720,
				'height'			: 250,
				'autoScale'			: false,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'type'				: 'iframe',
				'speedIn'			: 600,
				'speedOut'			: 100
				//'frameWidth'		: 20,
				//'frameHeight'		: 600 
			});
			$(".contactParts").fancybox({
				'width'				: 490,
				'height'			: 520,
				'autoScale'			: false,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'type'				: 'iframe',
				'speedIn'			: 600,
				'speedOut'			: 100
				//'frameWidth'		: 20,
				//'frameHeight'		: 600 
			});
			$(".hotspotLink").fancybox({
				'width'				: 720,
				'height'			: 200,
				'autoScale'			: false,
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'type'				: 'iframe',
				'speedIn'			: 600,
				'speedOut'			: 100
				//'frameWidth'		: 20,
				//'frameHeight'		: 600 
			});
		});
