window.addEvents({
  'domready': function(){
    redLinks();
    if($('messages')){
      setTimeout("$('messages').fade('out')",5*1000);
    }
  },
  'load': function(){ // preload stato hover
    $$('#secondaryNav img').each(function(el){
      new Element('img').set({src:"/img/menu/"+language+"/"+el.getParent().id+".current.gif"});
    });
  }
});

function centerContainer(){
  var winHeight = window.getSize().y;
  var containerHeight = $('container').getSize().y;
  winHeight > containerHeight ? $('container').setStyle('margin-top',(winHeight - containerHeight)/2) : $('container').setStyle('margin-top',0);
}

function redLinks(){
  $$('#secondaryNav img').each(function(el){
    el.getParent().addEvents({
      'mouseover': function(){
        el.set({src:"/img/menu/"+language+"/"+el.getParent().id+".current.gif"});
      },
      'mouseout': function(){
        el.set({src:"/img/menu/"+language+"/"+el.getParent().id+".gif"});
      }
    });
  });
}