var affM = function affManif(){
  var myFx = new Fx.Tween($('equip'));
  myFx.start('top', '25').chain(function(){$$('a.manif').removeEvent('click',showM);$('closeM').addEvent('click',closeM);});
  
}
var closeM = function closeManif(){
  var myFx = new Fx.Tween($('equip'));
  myFx.start('top', '-1200').chain(function(){$$('a.manif').addEvent('click',showM);$('closeM').removeEvent('click',closeM);});
}

var showM = affM.bind($$('a.manif'));

window.addEvent('domready',function(){

  $$('.popup').each(function(item){
    item.setStyle('top','-1200px');
  });
  $$('.equip').addEvent('click',showM);
  
  
  
});