jQuery(document).keydown( function( e ) {
	if( e.which == 27) {  // escape, close box
		jQuery('.floater').hide('normal');
	}
}); 

var t;
jQuery(document).ready(function() {
	jQuery('.floater').hide();
	t = setTimeout(function(){
			jQuery('.floater').show('normal');
	},2000);
	jQuery('.close').click(function() {
		jQuery('.floater').hide('normal');
	});
});
