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