(function(){
var elems=document.querySelectorAll('[id^="elementMenyu"]');
[].forEach.call(elems,function(X){
var n=X.id.replace(/[^\d]+/g,''),
op=document.querySelectorAll('#openingBlock'+n);
X.onmouseover=function(){op.classList.add("heighters1");};
X.onmouseout=function(){op.classList.remove("heighters1");};
op.onmouseover=function(){this.classList.add("heighters1");};
op.onmouseout=function(){this.classList.remove("heighters1");};
});
})();