$(document).ready(function(){
						   
	/*document.getElementById('main1').style.display = "";
	// Converting the #box div into a bounceBox:
	$('#box').bounceBox();
	$('#box').bounceShow();
	document.getElementById('main1').style.width  = $(window).width()+'px';
	document.getElementById('main1').style.height  = $(document).height()*1.4+'px';*/
	// Listening for the click event and toggling the box: 
	/*$('a.button').load(function(e){

		$('#box').bounceBoxToggle();
		e.preventDefault();
	}); */
	
	// When the box is clicked, hide it:
	/*$('.cls_box').click(function(){
		$('#box').bounceBoxHide();
		document.getElementById('main1').style.width  = 'auto';
		document.getElementById('main1').style.height  = 'auto';
	});*/
});

