$(document).ready(function() {
 // Oculta todo  
 $('#contenido1').hide();
 // $('#contenido2').hide();
  $('#contenido3').hide();
  $('#contenido4').hide();  
  $('#contenido5').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#todos').click(function() {
    $('#contenido1').toggle(400);							  
    $('#contenido2').toggle(400);							  
    $('#contenido3').toggle(400);							  
    $('#contenido4').toggle(400);
    $('#contenido5').toggle(400);
    return false;
  });   
});
