$(document).ready(function(){

	var animating = false;
	var mouseout = true;

	$('.home #content').hover(
		function(){
			mouseout = false;

			if(!animating) {
				animating = true;
				$('#logo').animate({ 'top': 50 }, 500, function() { animating = false; });
			}

			if(!mouseout)
				$('#videos').fadeIn(1000);
		},
		function() {
			mouseout = true;

			// prevents videos fading in if the
			if(animating) {
				$('#videos').stop(true, true);
			}

			$('#videos').fadeOut(300);

			animating = true;
			$('#logo').animate({ 'top': 140 }, 700, function() { animating = false; $('#videos').hide(); });
		}
	);

	if($('#video').length)
		$('#video').player();


	$('.video-thumb').hover(
		function(){
			if(!$(this).hasClass('selected')) {
				$(this).find('img, strong').fadeIn();
			}
		},
		function(){
			if(!$(this).hasClass('selected')) {
				$(this).find('img, strong').fadeOut();
			}
		}
	);

	$('.video #title strong').html($('.selected strong').html());

	$('a[rel*=external]').click( function() {
		window.open(this.href);
		return false;
	});

});