$(document).ready(function(){
 
	$("#mostrar").click(function(event){
	  event.preventDefault();
	  $("#caja").toggle(600);
	});
});
