
  $(document).ready(function () {
    
    // http://malsup.com/jquery/cycle/
    $('.diaporama').cycle({
      fx: 'fade',
      speed: 2000
    });

    $('.show-hide-div').hide();
    $('.show-hide').click(function () {
      if ($('#'+this.id+'-div').css('display') == 'none')
        $('#'+this.id+'-div').stop().slideDown("slow");
      else 
        $('#'+this.id+'-div').stop().slideUp("slow");
        
      return false;
    });
    
    // On submit disable its submit button
    $('form').submit(function(){
      $('input[type=submit]', this).attr('disabled', 'disabled');
    });
    
    
    if (!jQuery.browser.msie) { 
      $('#Titre').corner('8px');
    }
    
    $('#Titre').focus( function(){
      $('#Titre')[0].value = '';
    });
    
    $("#menu li").hover(function() {
      $(this).find("dd").stop().slideDown("fast").css({'height': '24px'});
    },function() {
      $(this).find("dd").stop().slideUp("fast").css({'height': '24px'});
    });



	  $("a[href^=http://]").not("a[href^=http://www.yourdomain]").attr("target", "blank");  
	  $("a[href^=http://]").not("a[href^=http://www.yourdomain]").attr("rel", "external");
  
  });
  
