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