// ипользует jQuery

// работа с тегами
function show_tags(){
  $("#tags").load("http://vfactory.ru/tags.html");
}


function set_order_by(){
  setCookie('order_by', this.value);      
  document.location =  $('#page_url').val();
}

function show_order_by(){
  var r = getCookie('order_by');
  if(r == '') 
     r = 'datetime';      
  $('#order_by').val(r);
}



// для быстрого просмотра информации по "другим" коллекциям
var current_section_id = ""; // устанавливается в section_column_box
function init_othersection_link(){
  $("a.othersection_link").mouseover(change_section_description);
  $("a.othersection_link").mouseout(return_section_description);
}

function change_section_description(){
  var url = this.href + "/@@section_description_box";
  $("#section_description").load(url);	
}

function return_section_description(){
  var url = "http://vfactory.ru/z.Section." + current_section_id + "/@@section_description_box";  
  $("#section_description").load(url);	
}


