$(document).ready(function() {
		var original = $('#sublabel').html();
		$("li a").hover(function() {
			var title = $(this).attr('title');
			var desc = $(this).html();
			$('#label').html(''+title+'');
			$('#sublabel').html(''+desc+'');
		},
		function() {
			$('#label').html('Adam Kolff');
			$('#sublabel').html(''+original+'');
		});
		
		$("a.about").fancybox({
			'titleShow'	:	false
		});
		
		$("a#gallery").click(function() {
			$.fancybox(
				[
					{'href' : 'media/images/gallery/0.jpg', 'title' : '<strong>Sic Et Non</strong><br /><em>This is the beginning of a beautiful friendship.</em>'},
					{'href' : 'media/images/gallery/00.jpg', 'title' : '<strong>Untitled</strong>'},
					{'href' : 'media/images/gallery/1.jpg', 'title' : '<strong>There Will Be No War</strong><br /><em>Activism for the eyes.</em>'},
					{'href' : 'media/images/gallery/2.jpg', 'title' : '<strong>Taking Celebration</strong><br /><em>Red, like the faces of drunks.</em>'},
					{'href' : 'media/images/gallery/3.jpg', 'title' : '<strong>An Attack On Conflict-Resolution</strong><br /><em>Perhaps it is a self-referential cliché, but how would I know?</em>'},
					{'href' : 'media/images/gallery/4.jpg', 'title' : '<strong>Life Is Lucky To Have Lasted</strong><br /><em>This is one of those sudden twists that leaves the path unchanged.</em>'},
					{'href' : 'media/images/gallery/5.jpg', 'title' : '<strong>My Rebuttal For The Lemon:</strong><br /><em>They chose their words so carefully, but their actions are a completely different story.</em>'},
					{'href' : 'media/images/gallery/6.jpg', 'title' : '<strong>Someone Call A Doctor</strong><br /><em>There is very little left for me to do here.</em>'},
					{'href' : 'media/images/gallery/7.jpg', 'title' : '<strong>I Am Probably A Dancing Queen</strong><br /><em>Have You seen That Girl? Have you watched that scene?</em>'},
					{'href' : 'media/images/gallery/8.jpg', 'title' : '<strong>Rhymes With &quot;Bucket&quot;</strong><br /><em>RESOLVED:</em>'},
					{'href' : 'media/images/gallery/9.jpg', 'title' : '<strong>So We Called The Doctor...</strong><br /><em>Turns out I&#39;m not well-endowed.</em>'}
				],
				{
					'padding' : '0',
					'type' : 'image',
					'titlePosition'	:	'over',
					'onComplete'	:	
						function() {
							$("#fancybox-wrap").hover(function() {
								$("#fancybox-title").show();
								}, 
						function() {
							$("#fancybox-title").hide();
						});
					},
					'cyclic' : true,
					'overlayColor': '#000'
			});
		});
	});
