
$(document).ready(function(){
	
  $('form.contactform div.html a').toggle(function(){
	  pi_ShowForm();
	  return false;
    }, function(){
      pi_HideForm();
      return false;
    }
    
  );
  
  $('div.select ul li:last-child').addClass('last');
  
  $('div.select ul').css('display','none');
  
  $('div.select ul:eq(0)').css('display','block');
  
  $('div.select li a').click(function(e){
	  $('li', $(this).parent().parent()).hide('fast');
	  $(this).parent().show('fast');
	  $(this).parent().addClass('open');
	  var index = $('div.select ul').index($(this).parent().parent())+1;
	  $('div.select ul:eq('+index+')').show('slow');
	  arec_cancel_event(e);
  });

  
});

function pi_ShowForm(){
  $('form.contactform div.optional').show('slow');
  $('form.contactform div.html a').text('Weniger Daten angeben? - Hier klicken');
}

function pi_HideForm(){
  $('form.contactform div.optional').hide('slow');
  $('form.contactform div.html a').text('Mehr Daten angeben? - Hier klicken');
}
