var id=11,ad=51,temp1=11,temp2=51;
var nothing=true;
function aktywny(odiv)
{
var odav=odiv+40;
temp1=odiv;temp2=odav; 

var heks=document.getElementById("a"+odav);
var tekst=document.getElementById("a"+odiv);
document.getElementById("a"+id).style.display="none";
tekst.style.display="block";
document.getElementById("a"+ad).style.background="url(img/menu/button_nieaktywny.png)";
heks.style.background="url(img/menu/button_aktywny.png)";
id=odiv;
ad=odav;


};
function aktywny_czekaj(odiv)
{
temp1=odiv; 
nothing=true;
setTimeout(function(){
if(temp1==odiv&&nothing==true)aktywny(odiv);
},300);

}
function deaktywacja()
{
nothing=false;
}