$(document).ready(function() {
$('#sec').hide();
$('a.sec').click(function() {
  var id = $(this).attr('id');
  $('#sec' + id).toggle(500);
  //alert(id);
  return false;
  });
});

$(document).ready(function() {
$('#sec').hide();
$('li.see').mouseover(function() {
  var id = $(this).attr('id');
  $('#sec' + id).show(500);
  //alert(id);
  return false;
  });
});

$(document).ready(function() {
$('#sec').hide();
$('li.see').mouseout(function() {
  var id = $(this).attr('id');
  $('#sec' + id).hide(500);
  //alert(id);
  return false;
  });
});