// JavaScript Document

if ( (navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/Android/i)) || (navigator.userAgent.match(/Windows Phone/i)) ) { 
		if (document.cookie.indexOf("iphone_redirect=false") == -1) window.location = "http://hotel-theatre.mobi"; 
	}
	
$(document).ready(function() {				  
	
	
	
	$("a#Carte").fancybox({
        'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});
	
	$("a[rel=Chambres]").fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic'
	});
	$("a[rel=galerie]").fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic'
	});
	
	$("a#Googlemaps").fancybox({
		'width'				: '75%',
		'height'			: '75%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
	$("a#Recommandez").fancybox({
		'width'				: '50%',
		'height'			: '55%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
});	
