// independently show and hide
$(document).ready(function() {
  $('div.box_content_text_noticias_show > div.text').hide();
  $('div.box_content_text_noticias_show > span').click(function() {
    $(this).next().slideToggle('fast');
  });
});

$(document).ready(function() {
  $('div.box_content_text_noticias_show2 > div.text').hide();
  $('div.box_content_text_noticias_show2 > span').click(function() {
    $(this).next().slideToggle('fast');
  });
});

$(document).ready(function() {
  $('div.box_content_text_noticias_show3 > div.text').hide();
  $('div.box_content_text_noticias_show3 > span').click(function() {
    $(this).next().slideToggle('fast');
  });
});

$(document).ready(function() {
  $('div.box_content_text_noticias_show4 > div.text').hide();
  $('div.box_content_text_noticias_show4 > span').click(function() {
    $(this).next().slideToggle('fast');
  });
});

$(document).ready(function() {
  $('div.box_content_text_noticias_show5 > div.text').hide();
  $('div.box_content_text_noticias_show5 > span').click(function() {
    $(this).next().slideToggle('fast');
  });
});

$(document).ready(function() {
  $('div.box_content_text_noticias_show6 > div.text').hide();
  $('div.box_content_text_noticias_show6 > span').click(function() {
    $(this).next().slideToggle('fast');
  });
});

$(document).ready(function() {
  $('div.box_content_text_noticias_show7 > div.text').hide();
  $('div.box_content_text_noticias_show7 > span').click(function() {
    $(this).next().slideToggle('fast');
  });
});

$(document).ready(function() {
  $('div.box_content_text_noticias_show8 > div.text').hide();
  $('div.box_content_text_noticias_show8 > span').click(function() {
    $(this).next().slideToggle('fast');
  });
});

$(document).ready(function(){
	// Hide all dds
	$("div.box_content_servicios_hideshow div.box_content_servicios_legend_show").hide();

	//  When a dt is clicked, 
	$("div.box_content_servicios_hideshow span").click(function () {
	  //  Toggle the slideVisibility of the dd directly after the clicked dt
	  $(this).next("div.box_content_servicios_legend_show").slideToggle("fast")
		//  And hide any dds that are siblings of that "just shown" dd.
		.siblings("div.box_content_servicios_legend_show").slideUp("fast");
	});
 });
