function limpia_texto(id) 
{
valor= id.value;
id.value="";
}// JavaScript Document


  $(document).ready(function() {
     $('#e2').tooltip ('Tu espacio, juegos, recortables, caretas para disfrazarte, descargas de Hada Margarita para tu ordenador', { width: 200 });
     $('#e3').tooltip ('Recetas de cocina, inventos, libros, videojuegos... y un mont&oacute;n de ideas para hacer juntos en casa.', { width: 200 });
     $('#e4').tooltip ('Espect&aacute;culos. Cine, teatro, cuentacuentos, circo, m&uacute;sica... Acomp&aacute;&ntilde;alos con palomitas.', { width: 200 });     
     $('#e5').tooltip ('Aprende mientras juegas. Talleres, museos y bibliotecas.', { width: 200 });
     $('#e6').tooltip ('Parques, actividades al aire libre, monta&ntilde;a, escapadas... Disfruta de la naturaleza..', { width: 200 });
     $('#e7').tooltip ('Consulta tus dudas a un experto, ONG, libros did&aacute;cticos recomendados.', { width: 200 });
     $('#e8').tooltip ('Guarder&iacute;as, tiendas de ropa, librer&iacute;as....', { width: 200 });
	 
	 
  });
  
$(document).ready(function() {

	//Default Action
	$(".tab_content").hide(); //Hide all content
	$(".active").show(); //Show first tab content
	
	//On Click Event
	$("ul.tabs li").click(function() {
		$("ul.tabs li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".tab_content").hide(); //Hide all tab content
		var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
		$(activeTab).fadeIn(); //Fade in the active content
		return false;
	});

});

