// JavaScript Document
var prior_link=false;
var prior_fone=false;
var prior_ind=false;
var timer1=false;

function top_cell_active(mLink,mFone1,mFone2)
{

	if(timer1)
  {
	clearTimeout(timer1);
	timer1=false;
	}
	
	try
	 {
	 	cur_link =document.getElementById(mLink);
	cur_fone =document.getElementById(mFone1);
	cur_ind = document.getElementById(mFone2);
	cur_link.className='link_topmenu_level1_a_112';
	cur_fone.className='top_menu_a_112';
	cur_ind.className='top_menu2_a_112';
     if(cur_link.id!=prior_link.id)
      {
				prior_link.className='link_topmenu_level1_p_112';
				prior_fone.className='top_menu_p_112';
				prior_ind.className='top_menu2_p_112';
	  }
	 }
     catch(exc)
	  {
	  }
 prior_link=cur_link;
 prior_fone=cur_fone;
 prior_ind=cur_ind;
}

function top_cell_passive(mLink,mFone1,mFone2)
{
	 timer1=setTimeout("prior_link.className='link_topmenu_level1_p_112';prior_fone.className='top_menu_p_112';prior_ind.className='top_menu2_p_112';",800);
}


