var hide_delay= 5;
window.onload = function(){
    var m = document.getElementById('item1');
    var men = document.getElementById('menu');
  if( m != null)
   {
    m.onmouseover = function () {
                men.style.display = 'block';
                pos = getPosition(m);
                men.style.left = pos.x + 180;
                men.style.top =  pos.y + 12;
                m.style.backgroundImage = "url(images/men_rod.jpg)";
                m.style.backgroundRepeat = "no-repeat";
                m.style.backgroundPosition = "85% 90%";
    }
    men.onmouseover = function () {
                men.style.display = 'block';
                pos = getPosition(m);
                men.style.left = pos.x + 180;
                men.style.top =  pos.y + 12;
                m.style.backgroundImage = "url(images/men_rod.jpg)";
                m.style.backgroundRepeat = "no-repeat";
                m.style.backgroundPosition = "85% 90%";
    }
    men.onmouseout = function ()
        {
            men.style.display = 'none';
            m.style.backgroundImage = "url('')";
        }
    m.onmouseout = function ()
        {
            men.style.display = 'none';
            m.style.backgroundImage = "url('')";
        }
   }
  var pas = document.getElementById('item2');
  var men2 = document.getElementById('menu2');
  pas.onmouseover = function () {
                men2.style.display = 'block';
                pos = getPosition(pas);
                men2.style.left = pos.x + 180;
                men2.style.top =  pos.y + 12;
                pas.style.backgroundImage = "url(images/men_rod.jpg)";
                pas.style.backgroundRepeat = "no-repeat";
                pas.style.backgroundPosition = "85% 90%";
    }
    men2.onmouseover = function () {
                men2.style.display = 'block';
                pos = getPosition(pas);
                men2.style.left = pos.x + 180;
                men2.style.top =  pos.y + 12;
                pas.style.backgroundImage = "url(images/men_rod.jpg)";
                pas.style.backgroundRepeat = "no-repeat";
                pas.style.backgroundPosition = "85% 90%";
    }
    men2.onmouseout = function ()
        {
            men2.style.display = 'none';
            pas.style.backgroundImage = "url('')";
        }
    pas.onmouseout = function ()
        {
            men2.style.display = 'none';
            pas.style.backgroundImage = "url('')";
        }
function getPosition(obj) {
 var x=0, y=0;
 while(obj) {
    x+=obj.offsetLeft;
    y+=obj.offsetTop;
    obj=obj.offsetParent;
 }
 return {x: x, y:y};
}
}
function mouseOver(obj)
{
    obj.style.backgroundImage = "url(images/men_rod.jpg)";
    obj.style.backgroundRepeat = "no-repeat";
    obj.style.backgroundPosition = "85% 90%";
}
function mouseOut(obj)
{
    obj.style.backgroundImage = "url('')";
}