$(document).ready( function() {

$(".metier-zoom-item h3 > a").click(function() {
$(".metier-zoom-item-content").hide("slow");
$(this).parent().next().show("slow");
$(".metier-zoom-item h3 > a").removeClass();
$(".metier-zoom-item h3").removeClass();
$(this).parent().addClass('selected');
$(this).addClass('selecteda');
});

$(".metier-zoom-item-content").hide();

});