$(function(){
	
	$('.works li a').hover(function(){
		$(this).find('span').stop().animate({bottom: 0}, 300);
	}, function(){
		$(this).find('span').stop().animate({bottom: -40}, 300);
	});

	/* Page overlay
	$(window).load(function(){
		$('.page-overlay').each(function(){
			var $overlay = $(this);
			var hide = function(){
				$overlay.delay(500).fadeOut(1000,function(){
					$('html').removeAttr('id');
				});
			}
			$overlay.find('.black').delay(1000).fadeOut(1000,hide);
			$overlay.find('a').click(function(){
				hide;
				return false;
			});
		});
	});*/

});
