function list_over(id1,id2) {
	document.getElementById('list_'+id1+'_'+id2).style.background='url(i/fon_4.gif) repeat top left';
}	
function list_out(id1,id2) {
	document.getElementById('list_'+id1+'_'+id2).style.background='url(i/c_cell_7.gif) repeat-x bottom left';
}	

function mouseover(id) {
	document.getElementById('number'+id).style.display='block';
	document.getElementById('number'+id).style.visibility='visible';
	if (id != id_current){
      document.getElementById('div_'+id+'_1').style.backgroundImage='url('+img_a_c.src+')';
      document.getElementById('div_'+id+'_2').style.backgroundImage='url('+img_a_l.src+')';
      document.getElementById('div_'+id+'_3').style.backgroundImage='url('+img_a_r.src+')';	  
      document.getElementById('div_'+id_current+'_1').style.backgroundImage='url('+img_c.src+')';
      document.getElementById('div_'+id_current+'_2').style.backgroundImage='url('+img_l.src+')';
      document.getElementById('div_'+id_current+'_3').style.backgroundImage='url('+img_r.src+')';
	  }
}	
		
function m_mouseover(id) {
	document.getElementById('number'+id).style.display='block';
	document.getElementById('number'+id).style.visibility='visible';
      document.getElementById('div_'+id+'_1').style.backgroundImage='url('+img_a_c.src+')';
      document.getElementById('div_'+id+'_2').style.backgroundImage='url('+img_a_l.src+')';
      document.getElementById('div_'+id+'_3').style.backgroundImage='url('+img_a_r.src+')';	  
}

function mouseout(id) {
	document.getElementById('number'+id).style.visibility='hidden';
	document.getElementById('number'+id).style.display='none';
	if (id != id_current){
      document.getElementById('div_'+id+'_1').style.backgroundImage='url('+img_c.src+')';
      document.getElementById('div_'+id+'_2').style.backgroundImage='url('+img_l.src+')';
      document.getElementById('div_'+id+'_3').style.backgroundImage='url('+img_r.src+')';
      document.getElementById('div_'+id_current+'_1').style.backgroundImage='url('+img_a_c.src+')';
      document.getElementById('div_'+id_current+'_2').style.backgroundImage='url('+img_a_l.src+')';
      document.getElementById('div_'+id_current+'_3').style.backgroundImage='url('+img_a_r.src+')';
	  }	
	
}

function m_mouseout(id) {
	document.getElementById('number'+id).style.visibility='hidden';
	document.getElementById('number'+id).style.display='none';
      document.getElementById('div_'+id+'_1').style.backgroundImage='url('+img_c.src+')';
      document.getElementById('div_'+id+'_2').style.backgroundImage='url('+img_l.src+')';
      document.getElementById('div_'+id+'_3').style.backgroundImage='url('+img_r.src+')';	
};

img_a_c=new Image();
img_a_l=new Image();
img_a_r=new Image();
img_a_c.src='i/a_c_menu.gif';
img_a_r.src='i/a_r_menu.gif';
img_a_l.src='i/a_l_menu.gif';
img_c=new Image();
img_l=new Image();
img_r=new Image();
img_c.src='i/center_menu.gif';
img_r.src='i/right_menu.gif';
img_l.src='i/left_menu.gif';

