$(document).ready(function(){
		
	$('#aviso').css({		
		display		: 'none',
		position	: 'absolute',		
		left		: '200px'
	});
	
	/* Listening for the click event and toggling the box: */
	$('#checkin').focus(function() {		
		$('#aviso').fadeIn('slow');
	});	
	
	/* When the box is focused, hide it: */
	$('#aviso').click(function(){
		$('#aviso').fadeOut('slow');
	});	
});

