var show_activ = 0;
var hide_activ = 0;

function getTipLayer(_index) {
   return document.getElementById('almenu_' + _index) || {style:{}};
}
function getitem(_index) {
   return document.getElementById('item_' + _index) || {style:{}};
}

function _showTip(_index) {
   _hideTips();
   getTipLayer(_index).style.display = 'block';
   getitem(_index).src = URL_BASE + 'uploads/menu/' + _index + '_roll.jpg';
}

function _hideTip(_index) {
   getTipLayer(_index).style.display = 'none';
   getitem(_index).src = URL_BASE + 'uploads/menu/' + _index + '.jpg';
   activ_hide = _index;
}

function _hideTips() {
   _hideTip(show_activ);
   show_activ = 0;         }

var _to = null;

function tipOver(_index) {
   if (_to) window.clearTimeout(_to);
       if (show_activ!=_index) _showTip(_index);
   show_activ = _index;
}

function tipOut(_index) {
   if (_to) window.clearTimeout(_to);
   _to = window.setTimeout('_hideTips()', 500);
} 