function up(name)
{
  pict = document.getElementById(name);
  pict.src="/template/zazakon/images/"+name+"-down.png";
}
function down(name)
{
  pict = document.getElementById(name);
  pict.src="/template/zazakon/images/"+name+".png";
}
function articleOver(name){
    thisMenu=document.getElementById(name).style;
    thoseMenu=document.getElementById(name+'td').style;
        thisMenu.backgroundColor="#F7F7F7";
        thoseMenu.backgroundColor="#F7F7F7";
        thoseMenu.backgroundImage="url('/template/zazakon/images/strelka.png')";
  }
  function articleOut(name){
    thisMenu=document.getElementById(name).style;
    thoseMenu=document.getElementById(name+'td').style;
        thisMenu.backgroundColor="#FFFFFF";
        thoseMenu.backgroundColor="#FFFFFF";
        thoseMenu.backgroundImage="url('/template/zazakon/images/strelka-none.png')";
  }


