$(function(){	
	$("a#info_btn").click(function () { 
		$("#overlay").fadeIn(200);
		$("#info").fadeIn(200);
		
		return false;
	});
	
	$("#overlay").click(function () { 
		$(this).fadeOut(200);
		$("#info").fadeOut(200);
	});
	
	$("a#close_btn").click(function () { 
		$("#overlay").fadeOut(200);
		$("#info").fadeOut(200);
		
		return false;
	});
});

$(window).bind("load", function() {
	$("#overlay").css("height",$(document).height());
});
