gesamt																= 0;

$(document).ready(function()
  {
  /* galerie
  ----------------------------------------------------------------*/
  $('li.cx-galerie').click(function()
    {
	$('a.cx-galerie:eq(0)').trigger('click');
	});
  
  $('a.cx-galerie').fancybox({
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true
	});

  
  
  /* sonstige layers
  ----------------------------------------------------------------*/
  $('.cx-agb, .cx-impressum, .cx-kontakt').click(function()
    {
	$('#sonstiges_layers').html('<div class="layer-content loading_dark"></div>');
	$('#sonstiges_layers').show();
	
	$.get('index.php?api=1&cont='+$(this).attr('title'),'',function(data)
	  {
	  $('#sonstiges_layers').html(data);
	  
	  
	  /* start anklicken
  	  ------------------------------------------------------------*/
	  $('#sonstiges_layers h2 span').click(function()
	    {
		$('.cx-layer-content').hide();
		$('.cx-navi-top li').removeClass('cx-selected');
		$('.cx-navi-top li.cx-start').addClass('cx-selected');
		});
	  });
	});
  
  
  
  /* topnavi
  ----------------------------------------------------------------*/
  $('.cx-navi-top li a').click(function()
    {
	$('.cx-layer-content').hide();
	$('.cx-navi-top li').removeClass('cx-selected');
	$(this).parents('li').addClass('cx-selected');
	});
  
  
  /* artikel-bilder enter
  ----------------------------------------------------------------*/
  $('.cx-artikel-tr').mouseenter(function()
    {
	obj_id															= '#'+$(this).parents('.shopshopshop').attr('id');
	$(obj_id+' div').hide();
	$(obj_id+' .cx-artikel-bild-'+$(this).attr('id_artikel')).show();
	});
  
  
  /* artikel-bilder leave
  ----------------------------------------------------------------*/
  $('.cx-artikel-tr').mouseleave(function()
    {
	obj_id															= '#'+$(this).parents('.shopshopshop').attr('id');
	$(obj_id+' div').hide();
	$(obj_id+' .cx-artikel-bild-0').show();
	});
  
  
  /* artikel-bilder click
  ----------------------------------------------------------------*/
  $('.cx-artikel-tr').click(function()
    {
	obj_id															= '#'+$(this).parents('.shopshopshop').attr('id');
	$(obj_id+' .cx-artikel-bild-0').html($(obj_id+' .cx-artikel-bild-'+$(this).attr('id_artikel')).html());
	});
  
  
  /* start anklicken
  ----------------------------------------------------------------*/
  $('.cx-start, .cx-layer-content h2 span').click(function()
    {
	$('.cx-layer-content').hide();
	$('.cx-navi-top li').removeClass('cx-selected');
	$('.cx-navi-top li.cx-start').addClass('cx-selected');
	});
  
  
  /* bestellformular anzeigen
  ----------------------------------------------------------------*/
  $('.cx-zum-bestellformular').click(function()
    {
	$('#bestellformular').show();
	if($('#bestellformular').attr('geladen') == '0')
	  {
	  $.get('index.php?api=1&cont=bestellformular','',function(data)
	    {
		$('#bestellformular_content').html(data);
		$('#bestellformular_content').removeClass('loading_dark');
		$('#bestellformular').attr('geladen','1');
		$('.bestellung_absenden').show();
		bestellformular_geladen();
		});
	  }
	});
  });


function bestellformular_geladen()
  {
  cx_init_verhalten('#bestellformular_content');
  
  
  $('#bestellformular_content .cx-agb').click(function()
    {
	$('#sonstiges_layers').html('<div class="layer-content loading_dark"></div>');
	$('#sonstiges_layers').show();
	
	$.get('index.php?api=1&cont=AGB','',function(data)
	  {
	  $('#sonstiges_layers').html(data);
	  
	  
	  /* start anklicken
  	  ------------------------------------------------------------*/
	  $('#sonstiges_layers h2 span').click(function()
	    {
		$('.cx-layer-content').hide();
		$('.cx-navi-top li').removeClass('cx-selected');
		$('.cx-navi-top li.cx-start').addClass('cx-selected');
		});
	  });
	});
  
  
  // absenden
  $('.bestellung_absenden').click(function()
    {
	fehler															= 0;
	
	for(i=0;i<$('.cx-pflicht input').length;i++)
	  {
	  if($('.cx-pflicht input:eq('+i+')').val() == $('.cx-pflicht input:eq('+i+')').attr('cx_default'))
	    {
		fehler++;
		}
	  }
	
	if(gesamt && $('#f_agb').attr('checked') && !fehler)
	  {
	  $('#form_bestellformular').hide();
	  $('#bestellformular_content').addClass('loading_dark');
	  $.post('index.php?api=1&cont=bestellen',$('#form_bestellformular').serialize(),function(data)
	    {
		$('#bestellformular_content').html(data);
		$('#bestellformular_content').removeClass('loading_dark');
		$('#bestellformular').attr('geladen','0');
		$('.bestellung_absenden').hide();
		cx_init_verhalten('#bestellformular_content');
		});
	  }
	else
	  {
	  alert('Bitte füllen Sie mindestens alle Felder bei der Lieferadresse aus und stimmen Sie zu, die AGB gelesen und akzeptiert zu haben.');
	  }
	});
  
  // menge
  $('.cx-artikel-menge').keyup(function()
    {
	preis															= parseInt($(this).attr('preis'))*parseInt(Math.max(0,$(this).val().replace(/[^0-9]/g,'')));
	if(preis > 0)
	  {
	  preis															+= ',- &euro;';
	  }
	else
	  {
	  preis															= '-';
	  }
	
	$(this).parents('tr').children('.s3').html(preis);
	
	// gesamtsumme
	gesamt															= 0;
	for(i=0;i<$('.cx-artikel-menge').length;i++)
	  {
	  if(parseInt(Math.max(0,$('.cx-artikel-menge:eq('+i+')').val().replace(/[^0-9]/g,''))) > 0)
	    {
		gesamt														+= (parseInt($('.cx-artikel-menge:eq('+i+')').attr('preis'))+parseInt(Math.max(0,$('.cx-artikel-menge:eq('+i+')').val().replace(/[^0-9]/g,''))));
		}
	  }
	
	if(gesamt > 0)
	  {
	  gesamt														+= ',- &euro;';
	  }
	else
	  {
	  gesamt														= '-';
	  }
	
	$('.gesamtsumme .s1').html(gesamt);
	});
  }
