// JavaScript Document
$(document).ready(function() {
        $('div#metier> div').hide();
        $('div#metier> h2').click(function() {
        $(this).next('div:hidden').prev('h2').children('span').css('background-position','top left');
        $(this).next('div:visible').prev('h2').children('span').css('background-position','top right');
        $(this).siblings('h2').children('span').css('background-position','top right');
      	$(this).next('div').slideToggle('800')
      	.siblings('div:visible').slideUp('800');

        });

      });