/* --- Accordeon --- */
$(document).ready(function(){
  // On cache les contenus :
  $('div.accordeon').hide();
  $('div.promotions_plus').hide();
  
  $('h2.btn').css('cursor','pointer');
  $('h2.btn').css('background','#dee1ce url(img/fleche.png) top right no-repeat');
  $('h3.btn_details').css('cursor','pointer');
  $('h3.btn_details').css('background','#dee1ce url(img/fleche.png) top right no-repeat');
  
  $('div.promotions_titre span').css('cursor','pointer');
  
  $('span#noces_more').css('cursor','pointer');
  
  // On affiche celui ayant comme classe "open"
  $('div.open').slideDown('normal');
  $('div.open').prev('h3.btn').css('background','#dee1ce url(img/fleche.png) bottom right no-repeat');
  $('div.open').prev('h3.btn_details').css('background','#dee1ce url(img/fleche.png) bottom right no-repeat');
  
  $('div.open').siblings('div.promotions_titre').children('span').css('background-position','top right');
  $('div.open').siblings('div.promotions_titre').children('span').css('color','#FFF');
  
  // Ecouteurs
  $('h2.btn').click(function(){
    //si ouvert -> referme
    if($(this).next('div.accordeon:visible').length!=0){
      $(this).next('div.accordeon').slideUp('normal');
      $(this).css('background','#dee1ce url(img/fleche.png) top right no-repeat');
    }
    //si cache, on ferme les autres et on affiche
    else {
      //cache
      $('h2.btn').next('div.accordeon').slideUp('normal');
      $('h2.btn').css('background','#dee1ce url(img/fleche.png) top right no-repeat');
      //montre
      $(this).next('div.accordeon').slideDown('normal');
      $(this).css('background','#dee1ce url(img/fleche.png) bottom right no-repeat');
    }
    return false;
  });
  
  $('h3.btn_details').click(function(){
    if($(this).next('div.accordeon:visible').length!=0){
      $(this).next('div.accordeon').slideUp('normal');
      $(this).css('background','#dee1ce url(img/fleche.png) top right no-repeat');
    }
    else {
      $(this).next('div.accordeon').slideDown('normal');
      $(this).css('background','#dee1ce url(img/fleche.png) bottom right no-repeat');
    }
  });
  
  $('div.promotions_titre span').click(function(){
    if($(this).parent().siblings('div.promotions_plus:visible').length!=0){
      $(this).parent().siblings('div.promotions_plus').slideUp('normal');
      $(this).css('background-position','-230px 0');
      $(this).css('color','#E83C51');
    }
    else {
      //cache
      $('div.promotions_titre span').parent().siblings('div.promotions_plus').slideUp('normal');
      $('div.promotions_titre span').css('background-position','-230px 0');
      $('div.promotions_titre span').css('color','#E83C51');
      //montre
      $(this).parent().siblings('div.promotions_plus').slideDown('normal');
      $(this).css('background-position','top right');
      $(this).css('color','#FFF');
    }
  });
  
  $('span#noces_more').click(function(){
    if($(this).siblings('div#voyagesdenoces').children('div.promotions_plus:visible').length!=0){
      $(this).siblings('div#voyagesdenoces').children('div.promotions_plus').slideUp('normal');
      $(this).css('text-decoration','none');
    }
    else {
      $(this).siblings('div#voyagesdenoces').children('div.promotions_plus').slideDown('normal');
      $(this).css('text-decoration','underline');
    }
  });
});


