function mOver(id)
{
  document.getElementById('img_'+id).style.display = 'none';
  document.getElementById('text_'+id).style.display = 'block';
}
function mOut(id)
{
  document.getElementById('text_'+id).style.display = 'none';
  document.getElementById('img_'+id).style.display = 'block';
}
function picOver(id)
{
  $(".bigpic").hide();
  $("#pic_"+id).show();
}