// JavaScript Document

 jQuery(document).ready(function(){
	$('#cuerpo .link').click(function() {
		$(this).next().slideToggle("slow");
		return false;
	}).next().hide();
	
	
	
});
