$(document).ready(function(){
  $('#petites_photos a').live('click',function(){
    //On recupere les element pour la description
    var ref = String($(this).children('img').attr('ref')).split('[@ref@]');
    $('#titre_photo').html(ref['0']);
    $('#desc_photo').html(ref['1']);
    $('#date_photo').html(ref['2']);
    $('#ref_photo').html(ref['3']);
    
    //On supprime l'image
    $("img").remove("#img_big");
    //Ajoute l'image
    $('<img src="'+$(this).attr('href')+'" alt="" id="img_big" />').appendTo('div#grande_photo');
    return false;
  });
});

