$(document).ready(function(){
												   
	// XHTML COMPATIBLE -> TARGET="_BLANK"
		$("a[rel^='external']").not('.follow').attr("target","_blank");
		
	// LIGHTBOX
		$('a.image', '#gallery').lightBox();
		
	// CHANGER D'IMAGE
		$('.gallery-ul a', '#gallery').click( 
			function(){
				var current = $(this);
				
				$('a.image img', '#gallery').animate(
					{opacity: 0},
					300,					
					function(){						
						var img = new Image();
						img.onload = function() {				  
							$('a.image', '#gallery')
								.attr('href', current.attr('href') )
								.attr('title', current.attr('title') );
							
							$('a.image img', '#gallery')
								.attr('src', current.find('img').attr('src') )
								.animate(
									{
										opacity: 1,
										height: (Math.ceil( this.height * 306 / this.width ) )
									}, 
									500
								);
						}
						img.src = current.find('img').attr('src');
					}
				);
				
				return false;			
			}
		);
	
});
