		$(document).ready(function(){
			/* Action lorsque l'on clique sur les boutons */
			$("#voir_web_momo").click(function(){
				$("#web-momo").animate({opacity: 'show'}, 500);
				$("#web-fab").hide();
				$("#web-james").hide();
				$("#web-elliot").hide();
				
				/* rubrique active */
				$("#voir_web_momo").empty();
				$("#voir_web_momo").append("<img src=\"param/images/momo_dessus.jpg\" name=\"momo\" width=\"351\" height=\"70\" border=\"0\">");
				
				$("#voir_web_james").empty();
				$("#voir_web_james").append("<img src=\"param/images/james_haut.png\" name=\"james\" width=\"351\" height=\"70\" border=\"0\">");				
				$("#voir_web_elliot").empty();
				$("#voir_web_elliot").append("<img src=\"param/images/elliot_haut.png\" name=\"elliot\" width=\"351\" height=\"70\" border=\"0\">");					
				$("#voir_web_fab").empty();
				$("#voir_web_fab").append("<img src=\"param/images/fab_haut.jpg\" name=\"referencement\" width=\"351\" height=\"70\" border=\"0\">");
			});
			
			$("#voir_web_fab").click(function(){
				$("#web-fab").animate({opacity: 'show'}, 500);
				$("#web-momo").hide();
				$("#web-james").hide();
				$("#web-elliot").hide();
				
				/* rubrique active */
				$("#voir_web_fab").empty();
				$("#voir_web_fab").append("<img src=\"param/images/fab_dessus.jpg\" name=\"referencement\" width=\"351\" height=\"70\" border=\"0\">");
				
				$("#voir_web_momo").empty();
				$("#voir_web_momo").append("<img src=\"param/images/momo_haut.jpg\" name=\"momo\" width=\"351\" height=\"70\" border=\"0\">");
				$("#voir_web_elliot").empty();
				$("#voir_web_elliot").append("<img src=\"param/images/elliot_haut.png\" name=\"elliot\" width=\"351\" height=\"70\" border=\"0\">");	
				$("#voir_web_james").empty();
				$("#voir_web_james").append("<img src=\"param/images/james_haut.png\" name=\"hebergement\" width=\"351\" height=\"70\" border=\"0\">");
			});
						
			$("#voir_web_james").click(function(){
				$("#web-james").animate({opacity: 'show'}, 500);				
				$("#web-momo").hide();
				$("#web-fab").hide();
				$("#web-elliot").hide();
				
				/* rubrique active */
				$("#voir_web_james").empty();
				$("#voir_web_james").append("<img src=\"param/images/james_dessus.png\" name=\"hebergement\" width=\"351\" height=\"70\" border=\"0\">");
				
				$("#voir_web_momo").empty();
				$("#voir_web_momo").append("<img src=\"param/images/momo_haut.jpg\" name=\"momo\" width=\"351\" height=\"70\" border=\"0\">");
				$("#voir_web_elliot").empty();
				$("#voir_web_elliot").append("<img src=\"param/images/elliot_haut.png\" name=\"elliot\" width=\"351\" height=\"70\" border=\"0\">");	
				$("#voir_web_fab").empty();
				$("#voir_web_fab").append("<img src=\"param/images/fab_haut.jpg\" name=\"referencement\" width=\"351\" height=\"70\" border=\"0\">");
			});
			
			$("#voir_web_elliot").click(function(){
				$("#web-elliot").animate({opacity: 'show'}, 500);				
				$("#web-momo").hide();
				$("#web-fab").hide();
				$("#web-james").hide();
				
				/* rubrique active */
				$("#voir_web_elliot").empty();
				$("#voir_web_elliot").append("<img src=\"param/images/elliot_dessus.png\" name=\"hebergement\" width=\"351\" height=\"70\" border=\"0\">");
				
				$("#voir_web_momo").empty();
				$("#voir_web_momo").append("<img src=\"param/images/momo_haut.jpg\" name=\"momo\" width=\"351\" height=\"70\" border=\"0\">");
				$("#voir_web_james").empty();
				$("#voir_web_james").append("<img src=\"param/images/james_haut.png\" name=\"elliot\" width=\"351\" height=\"70\" border=\"0\">");	
				$("#voir_web_fab").empty();
				$("#voir_web_fab").append("<img src=\"param/images/fab_haut.jpg\" name=\"referencement\" width=\"351\" height=\"70\" border=\"0\">");
			});

				 
		});