/*
 * Put customized script for specific actions in this document
 */

	$(document).ready(function() {
/*
* Iframe 
*/

            $(".map-popup").fancybox({
				'width' : '75%',
				'height' : '75%',
				'autoScale' : false,
				'transitionIn' : 'none',
				'transitionOut' : 'none',
				'type'				: 'iframe'
			});
		

/*
* Gallery - popup image
*/

			$("a.img-popup").fancybox({
				'titleShow'		: false
			});
			
/*
* Order form - popup 
*/			
			
			$(".inline-popup").fancybox({
				'titleShow'		: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'
			});
	
	});
	
	
