function init() {
	$('#tag').toggle(function(){
		$(this).animate({
			top:0
		}, "slow");
	},function(){
		$(this).animate({
			top: -325
		}, "slow");
	});
	$(window).resize(function(){
		var x;
		x = $(document).height() - $('#credits').height() - 5;
		$('#credits').css('top', x);
		$('.lost').css('top', x);
	});
	$('.lost a').click(function(){
		$('#tag').trigger('click');
	});
}