jQuery(document).ready(function() {

	$("#tour").click(function() {
		$.fancybox([
			{
				'href'	: '_img/tour/01-office-lobby.jpg',
				'title'	: 'Lobby (Use the arrow keys of your keyboard to scroll through the tour.)'
			},
			{
				'href'	: '_img/tour/02-office-check-in.jpg',
				'title'	: 'Nurses&rsquo; Station'
			},
			{
				'href'	: '_img/tour/03-office-check-in.jpg',
				'title'	: 'Our competent, friendly staff are here to care for you.'
			},
			{
				'href'	: '_img/tour/04-doc.jpg',
				'title'	: 'Dr. Burday dictating a patient&rsquo;s office note into our electronic medical record.'
			},
			{
				'href'	: '_img/tour/05-lab.jpg',
				'title'	: 'State of the art laboratory.'
			},
			{
				'href'	: '_img/tour/06-checkout.jpg',
				'title'	: 'Check-out with our staff of friendly faces!'
			}
		], {
			'padding'			: 0,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'              : 'image',
			'changeFade'        : 0,
			'titlePosition'  	: 'over'
		});
	});

});


