$(document).ready(function()
	{
// Video Fancybox
		$(".video").click(function() {
			$.fancybox({
				'autoScale'			: false,
				'height'			: 480,
				'href'				: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'overlayColor'		: '#000',
				'padding'			: 0,
				'swf'				: {
					'wmode'				: 'transparent',
					'allowfullscreen'	: 'true'
				},
				'titleShow'			: false,
				'type'				: 'swf',
				'width'				: 854,
			});
			return false;
		});

// Info Fancybox
		$("a#footLink").fancybox({
			'overlayColor'		: '#000',
			'padding'			: 0,
			'titleShow'			: false,
			'speedIn'			: 150,
			'speedOut'			: 150,
		});

// Video Slide Out
		$(".articleImage").mouseenter(function()
		{
			$(this).siblings(".articleText").show("fast");
			$(this).parent().animate({right:"0%",width:"100%"},"fast");
			$(this).fadeTo("fast",1);
		});
		$(".article").mouseleave(function()
		{
			$(this).children(".articleText").hide("fast");
			$(this).animate({width:"50%",right:"-50%"},"fast");
			$(this).children(".articleImage").fadeTo("fast",0.3);
		});

// Info "Bump"
		$("#foot").hover(function()
		{
			$("#footWrapper").animate({bottom:"-95"},"fast");
		},
		function()
		{
			$("#footWrapper").animate({bottom:"-103"},"fast");
		});

// Easter Egg
		$("#party").dblclick(function()
		{
			$("#hat").show().fadeOut(4000);
		});
	});
