$(function() {
	
	$body = $('body');

	// Open external links in a new browser window:
	$('.aktt_tweets').find('a').addClass('external');
	$("a[rel*='external'], a.external").attr('target','_blank');

	if ($body.is('.home')) {

		$('h1#logo > a, li.page-item-2 > a, p#emblem > a').addClass('home-link');
		
		// Intro:
		$('#branding').find('.wrapper').delay(250).animate({
			'height' : '310px'
		}, 200, 'easeInExpo', function() {
			$('h2#slogan').find('strong').show().animate({
				'top' : '0'
			}, 500, 'easeOutBounce', function() {
				$('<div class="chess" />').appendTo('#branding .wrapper').fadeIn(400);
				$('<div class="chess" />').appendTo('#main .wrapper').fadeIn(400);
			});
		});
		
		// Outro:
		$('a:not(.external,.video)').click(function(e) {
			e.preventDefault();
			if (!$(this).is('.home-link')) {
				href = $(this).attr('href');
				$('.chess').fadeOut(100).remove();
				$('h2#slogan').fadeOut(200, function() {
					$('.current_page_item').removeClass('current_page_item');
					$('#branding, #branding .wrapper').animate({
						'height' : '180px'
					}, 400, 'easeOutExpo', function() {
						window.location.href = href;
					});
				});
			}
			return false;
		});

		$('#emblem').find('a').click(function() {
			$('html, body').animate({ scrollTop:0 }, 'slow');
		});
		
		// Promo Video:
		$("#promo-video").find('a').fancybox({
			hideOnContentClick	: false,
			showCloseButton		: false,
			overlayColor		: '#000',
			overlayOpacity		: 0.75,
			padding				: 0,
			autoScale			: false,
			transitionIn		: 'elastic',
			transitionOut		: 'fade',
			width				: 720,
			height				: 405,
			href				: 'http://vimeo.com/moogaloop.swf?clip_id=29842915&title=0&byline=0&portrait=0&autoplay=1',
			type				: 'swf'
		});
	}

});
