$(document).ready(function() {
	$('#window').fadeIn('slow');
	$('.close').click(function() {
		$("#window").fadeOut('slow');
	});
});