var Ctrl = new function()
{
  this.init = function()
  {
    $('.ifixpng').ifixpng();
    $('.validate_me').validate();
    
    $('.nous_rejoindre a').hover(
	  function () {
	    $('.nous_rejoindre a img').attr('src', '../images/nous_rejoindre_over.png');
	  }, 
	  function () {
	    $('.nous_rejoindre a img').attr('src', '../images/nous_rejoindre.png');
	  }
	);
  }
};

$(function(){
  Ctrl.init();
});
