$(document).ready(function()
{
  
  /*******************************************/
  /* Gestion du formulaire newsletter        */
  $("#drtjih-drtjih").focus(function() {
    if (this.value == 'Votre email') { 
      this.value = '';
    } 
  }) 
  .blur(function() {
    if (this.value == '') { 
      this.value = 'Votre email';
    } 
  }); 
  
  /*******************************************/
  /* Gallerie photo                          */
  if ($("a[rel^='prettyPhoto']").size() > 0)
  {
    $("a[rel^='prettyPhoto']").prettyPhoto({
      theme: 'light_square'
    });
  }
  
  /*********************************************/
  /* Formulaire d'adhésion                     */
  motivation_text = $('#adhesion_request_motivation_text').val();
  $('#adhesion_request_motivation_text').bind('focus', function() {
    if ( $(this).val() == motivation_text )
    {
      $(this).val("");
    }
  }).bind('blur', function(){
    if ( $(this).val() == "" )
    {
      $(this).val(motivation_text);
    }
  });
  $('#adhesion-form .radio_list').bind('change', function(e) {
    switch($(this).find(":checked").val())
    {
      case "0":
        $('#adhesion_request_amount').val(15);
        break;
      case "1":
        $('#adhesion_request_amount').val(100);
        break;
      case "2":
        $('#adhesion_request_amount').val(400);
        break;
    }
  })
  
  $('.catalogs a').each(function(){
    $(this).popupWindow({
      height:680,
      width:1000,
      centerScreen:1 
    }); 
  })
  $('#banners ul').cycle({ 
    fx:    'scrollRight', 
    speed:  1500
  });

  $(".inFieldLabel").inFieldLabels();
});

