$(document).ready(function(){
   $("#basic img").click(function(){
       var src = $(this).attr("src");       
       $(".img img").attr("src", src);
       $(".img").show();
       $(".galerie").hide();
       $(".thumbSlider").hide();
   }) 
   
   $(".close").click(function(){
       $(".img").hide();
       $(".galerie").show();
       $(".thumbSlider").show();
   });
});
