jQuery(document).ready(function() {
  jQuery("#Collection img.carte, img.flippable").hover(
    function() {this.src = this.src.replace('.png', 'Dos.png');},
    function() {this.src = this.src.replace('Dos.png', '.png');}
  );
});

