
/************************************************************************************
**								FONCTIONS GENERALES									                              *
************************************************************************************/

Event.observe(window, 'load',
              function() {
                new Contact();
              });

/************************************************************************************
**							EFFET MENU ACCORDEON									                              *
************************************************************************************/

var Contact = Class.create({

  /**
  * Constructeur
  */
  initialize: function() {

    new Control.Modal('lien_callback', {
			iframe: true,
      fade: true,
      width: 445,
			height: 474,
      opacity: 0.8,
      beforeOpen: function() { hideFlash(); },
      afterClose: function() { showFlash(); }
		});
  }
});
