function div_switch_visible (switch_id,obj_id){

  $(switch_id).click(function(event){
    $(obj_id).toggle("fast");
    event.preventDefault();
  });

}

function div_visible (switch_id,obj_id){

  $(switch_id).click(function(event){
    $(obj_id).show("fast");
    event.preventDefault();
  });

}

function div_invisible (switch_id,obj_id){

  $(switch_id).click(function(event){
    $(obj_id).hide("fast");
    event.preventDefault();
  });

}

// раскраска таблиц
$(document).ready(function() {

  $(".flash_cells td").hover(function() {
    $(this).addClass("hover_highlight");
  },function(){
    $(this).removeClass("hover_highlight");
  });

  $(".flash_rows tr").hover(function() {
    $(this).addClass("hover_highlight");
  },function(){
    $(this).removeClass("hover_highlight");
  });

});

// фокус на элемент
$(document).ready(function(){
  $("#focus").select();
});

