/* fancybox
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

	$(document).ready(function() {
	
		/* This is basic - uses default settings */
		
		$("a.ajax").fancybox({
			'autoDimensions'	: false,
			'width'			:	700,
			'height'		:	'auto',
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'speedIn'		:	200, 
			'speedOut'		:	200, 
			'overlayShow'	:	true
		});
		
		$("a.single_image").fancybox({
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'speedIn'		:	200, 
			'speedOut'		:	200, 
			'overlayShow'	:	true
		});
		
		/* Using custom settings */
		
		$("a.mapas").fancybox({
			'width'			:	670, 
			'height'		:	515, 
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'speedIn'		:	200, 
			'speedOut'		:	200, 
			'hideOnContentClick': true,
			'overlayShow'	:	true,
			'type'			: 'iframe'
		});
	
		/* Apply fancybox to multiple items */
		
		$("a.group").fancybox({
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'speedIn'		:	200, 
			'speedOut'		:	200, 
			'overlayShow'	:	true
		});
		
	});
	
	
