 //указывает идетнфикатор меню которое требуется сделать активной
   //номер меню соответствует индексу массива what_s
   var selected_menu=3;

   var current_id=1;
   var what_s = new Array();
   what_s[1]="http://all.by/cgi-bin/search?mode=news&find="; //новости
   what_s[2]="http://all.by/cgi-bin/search?mode=www&find="; //СНГ
   what_s[3]="http://all.by/cgi-bin/search?mode=by&find="; //Беларусь
   what_s[4]="http://all.by/cgi-bin/search?mode=shop&find="; //товары
   what_s[5]="http://all.by/cgi-bin/search?mode=work&find="; //Работа
   var cur_action="";
   document.findform.action.value=what_s[1];
   function del_select(id){
    if (id==0){return;}
     document.getElementById('tr_'+id+'_').style.backgroundImage="url(/pics/pixel.gif)";
     document.getElementById('tr_d_'+id+'_').style.backgroundImage="url(/pics/pixel.gif)";
     document.getElementById('tr_'+id+'_').style.backgroundImage="url(/pics/pixel.gif)";
     document.getElementById('b_l_'+id+'_').src='/pics/pixel.gif';
     document.getElementById('b_d_l_'+id+'_').src='/pics/pixel.gif';
     document.getElementById('b_d_r_'+id+'_').src='/pics/pixel.gif';
     document.getElementById('b_r_'+id+'_').src='/pics/pixel.gif';
     document.getElementById('b_d_'+id+'_').src='/pics/pixel.gif';
    return;
   }
   function set_select(id){
    if (document.findform.findtext){
     document.findform.findtext.focus();
    }
    if (current_id==id){return;}
    if (id==0){return;}
     del_select(current_id);
     document.getElementById('tr_d_'+id+'_').style.backgroundImage="url(/pics/b_d_bg.gif)";
     document.getElementById('tr_'+id+'_').style.backgroundImage="url(/pics/b_bg.gif)";
     document.getElementById('b_l_'+id+'_').src='/pics/b_l.gif';
     document.getElementById('b_r_'+id+'_').src='/pics/b_r.gif';
     document.getElementById('b_d_'+id+'_').src='/pics/b_d.gif';
     document.getElementById('b_d_l_'+id+'_').src='/pics/b_d_l.gif';
     document.getElementById('b_d_r_'+id+'_').src='/pics/b_d_r.gif';
     current_id=id;
     document.findform.action.value=what_s[id];
    return;
   }
   function submit_form(){
    document.location.href=document.findform.action.value+document.findform.findtext.value;
   }

   set_select(selected_menu);


