/* - - - - - - - - - - - - - - - - - - - - - - -
 JavaScript
 mardi 25 mars 2008 14:39:46
 HAPedit 3.1.11.111
 - - - - - - - - - - - - - - - - - - - - - - - */
 window.addEvent('domready', function(){

 var Tips1 = new Tips($$('.cherche_presse'), {
  initialize:function(){
    this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
  },
  onShow: function(toolTip) {
    this.fx.start(1);
  },
  onHide: function(toolTip) {
    this.fx.start(0);
  },
  maxTitleChars: 100
});

 var Tips2 = new Tips($$('.cherche_news'), {
  initialize:function(){
    this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
  },
  onShow: function(toolTip) {
    this.fx.start(1);
  },
  onHide: function(toolTip) {
    this.fx.start(0);
  },
  maxTitleChars: 100
});

var Tips3 = new Tips($$('.cherche_media'), {
  initialize:function(){
    this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
  },
  onShow: function(toolTip) {
    this.fx.start(1);
  },
  onHide: function(toolTip) {
    this.fx.start(0);
  },
  maxTitleChars: 100
});

new Drag.Move('article_container');

});
