$(document).ready(function() {
		$("a#inline").fancybox({
			'overlayColor': '#000',
			'autoDimensions' : false
		});

		$("a#gallery").click(function() {
			$.fancybox(
				[
					{'href' : 'media/images/gallery/0.jpg', 'title' : 'Sic Et Non<br /><em>This is the beginning of a beautiful friendship.</em>'},
					{'href' : 'media/images/gallery/00.jpg', 'title' : 'Untitled'},
					{'href' : 'media/images/gallery/1.jpg', 'title' : 'There Will Be No War<br /><em>Activism for the eyes.</em>'},
					{'href' : 'media/images/gallery/2.jpg', 'title' : 'Taking Celebration<br /><em>Red, like the faces of drunks.</em>'},
					{'href' : 'media/images/gallery/3.jpg', 'title' : 'An Attack On Conflict-Resolution<br /><em>Perhaps it is a self-referential cliché, but how would I know?</em>'},
					{'href' : 'media/images/gallery/4.jpg', 'title' : 'Life Is Lucky To Have Lasted<br /><em>This is one of those sudden twists that leaves the path unchanged.</em>'},
					{'href' : 'media/images/gallery/5.jpg', 'title' : 'My Rebuttal For The Lemon:<br /><em>They chose their words so carefully, but their actions are a completely different story.</em>'},
					{'href' : 'media/images/gallery/6.jpg', 'title' : 'Someone Call A Doctor<br /><em>There is very little left for me to do here.</em>'},
					{'href' : 'media/images/gallery/7.jpg', 'title' : 'I Am Probably A Dancing Queen<br /><em>Have You seen That Girl? Have you watched that scene?</em>'}
				],
				{
					'type' : 'image',
					'titlePosition'	:	'over',
					'onComplete'	:	
						function() {
							$("#fancybox-wrap").hover(function() {
								$("#fancybox-title").show();
								}, 
						function() {
							$("#fancybox-title").hide();
						});
					},
					'cyclic' : true,
					'overlayColor': '#000'
			});
		});
	});