$(document).ready(function(){
  
  if($("#image-big").length > 0) {

  var lien = $(".left a:first").attr("href");
  //var texte = "<span class=\"date\">Date : </span>" + "<span class=\"arial\">" + $(".left a:first").attr("title") + "</span>";
  //$("#dec").hide().html(texte);
  $("#image-big").attr("src",lien).load(function(){
    $("#loader").hide();
    $(this).fadeIn("fast", function(){
    //$("#dec").fadeIn("fast");
      });
  });
  }

  $(".thumb-container a").click(function(){
  var lien = $(this).attr("href");
  $(".curent_thumb").removeClass("curent_thumb");
  $(this).find("img").addClass("curent_thumb");
  //var texte = "<span class=\"date\">Date : </span>" + "<span class=\"arial\">" + $(this).attr("title") + "</span>";
  if($(this).attr("href") == $("#image-big").attr("src")){return false;} 
  
  $("#image-big").fadeOut("fast", function(){
    $("#loader").show();
    //$("#dec").hide().html(texte);
    
    $("#image-big").attr("src",lien).load(function(){
    $("#loader").hide();
    $(this).fadeIn("fast", function(){
   // $("#dec").fadeIn("fast");
	    });
    });
	    
    
  });
    
    return false;
  });
});

