$(document).ready(function() {
	
	$("#content").css("display", "none");   
	$("a").click(function(){
		$("#content").fadeOut(2000);		
	});
	
});

