$("#menuExpos a").click(function () {
	if(!$(this).parent().hasClass('selected')) {
	    
	        $('.selected').removeClass('selected');
		$(this).parent().addClass('selected');
	        
	        var call = $(this).attr('href')+' #galerie';
	        $(".centre").addClass("remove");
	        $(".centre").parent().append('<div />').children(':last-child').addClass('centre').css({'left':'1345px'}).load(call, function() {
			thumbsize();

	            $(".centre").animate({"left": "-=1145px"}, 2000, 'swing' , function () {                       
	                                                                     
	                $(".remove").remove();
	                $('*:not(#menuExpos a)').unbind();
	                thumbHover();
	                thumbClick();
	                imageClick();

	            });                  
	        });

	}
	
	return false;        
    });

    $(document).ready(function () {
	jQuery.preLoadImages(this);
	thumbHover();
	thumbClick();
	imageClick();
	thumbsize();
    });

