// JavaScript Document
$(document).ready(function() {
	
	/* Iframe*/
  
  $("a.thumbnailgallery").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	400, 
		'speedOut'		:	400, 
		'overlayShow'	:	true,
		'titleShow'		:	false
	});
	
	$("a.box").fancybox({
		'width': 700,
        'height': 600,
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	800, 
		'speedOut'		:	400, 
		'type': 'iframe',
        'titleShow':	false,
    	'opacity': true,
    	'overlayColor'  : '#000000',
    	'scrolling' : 'auto'
	});
  
	
});
