window.addEvent('domready', function() {
  ReMooz.assign('a.remooz');
  
  var images = ['/img/host/menu1_o.gif','/img/host/menu2_o.gif','/img/host/menu3_o.gif','/img/host/menu4_o.gif','/img/host/menu5_o.gif','/img/host/menu1_d.gif','/img/host/menu2_d.gif','/img/host/menu3_d.gif','/img/host/menu4_d.gif','/img/host/menu5_d.gif'];
  new Asset.images(images)
  var images = ['/img/allsectorfooter_01_o.png','/img/allsectorfooter_02_o.png','/img/allsectorfooter_03_o.png','/img/allsectorfooter_04_o.png','/img/allsectorfooter_05_o.png'];
  new Asset.images(images)
/**
 * Menu rollover
 */
$$('img[id^=menuitem]').each(function(item,index){
    item.addEvents({
      'mouseenter': function(){
        this.setAttribute('src',this.src.replace('.gif', '_o.gif'));
      },
      'mouseleave': function(){
        this.setAttribute('src',this.src.replace('_o.gif', '.gif'));
      }
    });
  });

/**
 * Footer rollover
 */
$$('img[id^=allsector]').each(function(item,index){
    item.addEvents({
      'mouseenter': function(){
        this.setAttribute('src',this.src.replace('.png', '_o.png'));
      },
      'mouseleave': function(){
        this.setAttribute('src',this.src.replace('_o.png', '.png'));
      }
    });
  });


});
