function img_chmurka(e,v,obrazek){
asd='asd';
  if(asd){
    var t=document.createElement("div");
    t.style.position="absolute";

    titl=asd;
    s=asd;
    t.innerHTML='<div class="top_lang_over"><img src="'+obrazek+'" alt=""></div>';
    asd="";
    v.move=function(e){

      e=e||event;
      t.style.left=e.clientX+document.body.scrollLeft+20+"px";
      t.style.top=e.clientY+25+document.body.scrollTop+-24+"px";
    }
    v.move(e);
    document.body.appendChild(t);
    v.onmousemove=function(e){v.move(e);}
    v.onmouseout=function(e){
      s=t.innerHTML;
      document.body.removeChild(t);
      asd=titl;
    }
  }
}

function menu(t) {

t.style.left = '-3px';
t.style.backgroundPosition = "0px";
t.style.width = "212px";

document.getElementById(t.className+'_box').style.display='block';
t.onmouseout=function(){

document.getElementById(t.className+'_box').style.display='none';
t.style.left = '';
t.style.backgroundPosition = "300px";
t.style.width = "";

}

t.onclick=function(){ return false; }

}

function menu_box(t,id) {

old_left = document.getElementById(id).style.left;
old_backgroundPosition = document.getElementById(id).style.backgroundPosition;
old_width = document.getElementById(id).style.width;

t.style.display = "block";
document.getElementById(id).style.left = '-3px';
document.getElementById(id).style.backgroundPosition = "0px";
document.getElementById(id).style.width = "212px";

t.onmouseout=function(){

t.style.display = "";
document.getElementById(id).style.left = '';
document.getElementById(id).style.backgroundPosition = "300px";
document.getElementById(id).style.width = "";

}


}
