// ---------------------------------------------------------------------------
// ready
// ---------------------------------------------------------------------------
$(function() {
  // -------------------------------------------------------------------------
  // Formularfelder
  // -------------------------------------------------------------------------
  $('form :input').not(':submit,:reset').focus(function() {
    $(this).css('backgroundColor', '#ECEFF4');
  }).blur(function() {
    $(this).css('backgroundColor', '#FFFFFF');
  });

  // erstes Formularfeld fokusieren
  $(':input[type!=hidden]:first').not(':button').focus().select();

  // -------------------------------------------------------------------------
  // Klapptexte
  // -------------------------------------------------------------------------
  $('body').on('click', 'p.more', function() {
    var div = $(this).next('div.more_cont');
    var img = $(this).children('img');

    if (div.is(':hidden')) {
      // aktuellen DIV anzeigen
      div.show();
      img.attr({src: 'images/close.gif', title: 'Details verbergen', alt: 'Details verbergen'});
    } else {
      // aktuellen DIV verstecken
      div.hide();
      img.attr({src: 'images/open.gif', title: 'Details anzeigen', alt: 'Details anzeigen'});
    }
  });
});
