function switch_to(new_tab) {
  $('#'+current_tab).hide();
  $('#'+new_tab).show();
  current_tab = new_tab;  
  return false;
}

function swap_image(id) {
  $('#'+image_column).hide();
  $('#'+id).show();
  image_column = id;
}

