// JavaScript Document

	// When the DOM is ready, initialize the scripts.
	jQuery(function( $ ){
	 
	
	// Get a reference to the container.
	var container = $( "#boxy" );
	 
	
	 
	
	// Bind the link to toggle the slide.
	$( "#clicar" ).click(
	function( event ){
	// Prevent the default event.
	event.preventDefault();
	 
	
	// Toggle the slide based on its current
	// visibility.
	if (container.is( ":visible" )){
	 
	
	// Hide - slide up.
	container.slideUp( 1000 );
	 
	
	} else {
	 
	
	// Show - slide down.
	container.slideDown( 1000 );
	 
	
	}
	}
	);
	 
	
	});
	
	
	// When the DOM is ready, initialize the scripts.
	jQuery(function( $ ){
	 
	
	// Get a reference to the container.
	var container = $( "#boxy2" );
	 
	
	 
	
	// Bind the link to toggle the slide.
	$( "#clicar2" ).click(
	function( event ){
	// Prevent the default event.
	event.preventDefault();
	 
	
	// Toggle the slide based on its current
	// visibility.
	if (container.is( ":visible" )){
	 
	
	// Hide - slide up.
	container.slideUp( 1000 );
	 
	
	} else {
	 
	
	// Show - slide down.
	container.slideDown( 1000 );
	 
	
	}
	}
	);
	 
	
	});
	
	
	// When the DOM is ready, initialize the scripts.
	jQuery(function( $ ){
	 
	
	// Get a reference to the container.
	var container = $( "#boxy3" );
	 
	
	 
	
	// Bind the link to toggle the slide.
	$( "#clicar3" ).click(
	function( event ){
	// Prevent the default event.
	event.preventDefault();
	 
	
	// Toggle the slide based on its current
	// visibility.
	if (container.is( ":visible" )){
	 
	
	// Hide - slide up.
	container.slideUp( 1000 );
	 
	
	} else {
	 
	
	// Show - slide down.
	container.slideDown( 1000 );
	 
	
	}
	}
	);
	 
	
	});
