$(document).ready(function(){

	/* Converting the #box div into a bounceBox: */
	$('#aviso').bounceBox();

	/* Listening for the click event and toggling the box: */
	
		$('#aviso').bounceBoxShow();
		//e.preventDefault();
	
	
	/* When the box is clicked, hide it: */
	$('#aviso').click(function(){
		$('#aviso').bounceBoxHide();
	});	
});

