$(document).ready(function() {
 // Oculta todo  
 $('#contenido1').hide();
  $('#contenido2').hide();
  $('#contenido3').hide();
  $('#contenido4').hide();  
  $('#contenido5').hide();   
  $('#contenido6').hide();    
  $('#contenido7').hide();    
  $('#contenido8').hide();    
  $('#contenido9').hide();    
  $('#contenido10').hide();    
  $('#contenido11').hide();    
  $('#contenido12').hide();    
  $('#contenido13').hide();    
  $('#contenido14').hide();    
  $('#contenido15').hide();    
  $('#contenido16').hide();    
  $('#contenido17').hide();    

 
 // :D
  $('a#1').click(function() {
    $('#contenido1').toggle(400);
    return false;
  });  
  $('a#2').click(function() {
    $('#contenido2').toggle(400);
    return false;
  });
  $('a#3').click(function() {
    $('#contenido3').toggle(400);
    return false;
  });  
  $('a#4').click(function() {
    $('#contenido4').toggle(400);
    return false;
  });   
  $('a#5').click(function() {
    $('#contenido5').toggle(400);
    return false;
  });  
   $('a#6').click(function() {
    $('#contenido6').toggle(400);
    return false;
  });  
  $('a#7').click(function() {
    $('#contenido7').toggle(400);
    return false;
  });  
  $('a#8').click(function() {
    $('#contenido8').toggle(400);
    return false;
  });  
  $('a#9').click(function() {
    $('#contenido9').toggle(400);
    return false;
  });  
  $('a#10').click(function() {
    $('#contenido10').toggle(400);
    return false;
  });  
  $('a#11').click(function() {
    $('#contenido11').toggle(400);
    return false;
  });  
  $('a#12').click(function() {
    $('#contenido12').toggle(400);
    return false;
  });  
  $('a#13').click(function() {
    $('#contenido13').toggle(400);
    return false;
  });  
  $('a#14').click(function() {
    $('#contenido14').toggle(400);
    return false;
  });  
  $('a#15').click(function() {
    $('#contenido15').toggle(400);
    return false;
  });  
  $('a#16').click(function() {
    $('#contenido16').toggle(400);
    return false;
  });  
  $('a#17').click(function() {
    $('#contenido17').toggle(400);
    return false;
  });   
  $('a#todos').click(function() {
    $('#contenido1').toggle(400);							  
    $('#contenido2').toggle(400);							  
    $('#contenido3').toggle(400);							  
    $('#contenido4').toggle(400);
    $('#contenido5').toggle(400);    
$('#contenido6').toggle(400);
    $('#contenido7').toggle(400);

    $('#contenido8').toggle(400);

    $('#contenido9').toggle(400);

    $('#contenido10').toggle(400);
    $('#contenido11').toggle(400);
    $('#contenido12').toggle(400);
    $('#contenido13').toggle(400);
    $('#contenido14').toggle(400);
    $('#contenido15').toggle(400);
    $('#contenido16').toggle(400);
    $('#contenido17').toggle(400);


  return false;
  });   
});