var j=jQuery.noConflict();
j(document).ready(function() {
  centrage();
});

j(window).bind('resize', centrage);

function centrage(){
  largeur=j('#fond img').width();
  marge=parseInt(largeur/2);
  j('#fond img').css('margin-left','-'+marge+'px'); 
}
