$(document).ready(function() {
			/*
			*   Examples - images
			*/

$("a#bio").fancybox();

			$("a[rel=tour_group]").fancybox({
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'titlePosition' 	: 'none'
							});
							
							$("a[rel=facility_group]").fancybox({
				'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'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.youtube").click(function() { 
	$.fancybox({ 
	'padding'       : 0, //optional 
	'autoScale'     : false, 
	'transitionIn': 'fade', 
	'transitionOut': 'fade', 
	'width': 480, //or whatever 
	'height': 390, //or whatever 
	'href': this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'), 
	'type': 'swf', 
	'swf': { 
	'wmode': 'opaque', 
	'allowfullscreen'       : 'true' 
} 
}); 
return false; 
}); 

				});
