$(function() {
	setTimeout("$('#front_layer').animate({ 'top': '100px'},1000)", 1500);
	
	$('#front_layer_close a').click(function() {
		$('#front_layer').hide();
		
		return false;
	});
});

