$(function () {
	
	var current = '';
	var list = $('#header ul');
	
	$('#header h1 a').live('click', function () {
		$.scrollTo(0, 400);
		return false;
	});
	
	$('#header ul a, .scroll, a[href^="#"]').live('click', function () {
		$.scrollTo($(this).attr('href'), 1000);
		return false;
	});
	
	var dropTimeout;
	$('#header ul').hover(function () {
		dropTimeout = setTimeout(function () {
			$('#header #cover').stop(true, true).animate({
				'height': '480px'
			}, 1000);
		}, 200);
		
	}, function () {
		clearTimeout(dropTimeout);
		$(this).parent().stop(true, true).animate({
			'height': '27px'
		}, 1000);
	});
	
});

