$(document).ready(function()
  {
  /* warenkorb-funktionen
  ----------------------------------------------------------------*/
  
  
  // menge aktualisieren
  $('.cx-shop-warenkorb-aktualisieren').click(function()
    {
	$('.cx-shop-warenkorb form').submit();
	});
  
  
  // artikel aus warenkorb loeschen
  $('.cx-shop-warenkorb-loeschen').click(function()
    {
	$('#'+$(this).parents('.cx-shop-warenkorb-artikel').attr('id')+' .cx-shop-menge').val(0);
	$('.cx-shop-warenkorb form').submit();
	});
  
  
  // enter bei menge
  $('.cx-shop-warenkorb .cx-shop-menge').keydown(function(event)
    {
	if(event.keyCode == 13)
	  {
	  $('.cx-shop-warenkorb form').submit();
	  }
	});
  
  
  // kundenlogin toggler
  $('a.cx-shop-kundenlogin-toggle').click(function()
    {
	$('.cx-shop-kundenlogin-switcher').hide();
	$('div.cx-shop-kundenlogin-toggle').hide();
	$('.'+$(this).attr('ref')).show();
	});
  
  
  // submit formulare
  $('.cx-shop-button-weiter').click(function()
    {
	id_form															= $(this).parents('form').attr('id');
	anz_fehler														= cx_formular_fehler_pruefen('#'+id_form);
	
	if(!anz_fehler)
	  {
	  $('#'+id_form+' .cx-formular-fehler').hide();
	  cx_load_and_hide('#'+id_form,'table',1);
	  $('#'+id_form).submit();
	  }
	});
  });
