$( function() {
	$( '#warenkorb').scrollFollow( {
		speed: 1000,
		offset: 60
	});
	$('select.updateTotal').change(updateWarenkorb);
	updateWarenkorb();
	
});

function updateWarenkorb() {
	var total = 0;
	$('#warenkorbArtikel').text('');
	
	$('div.shop-produkt').each(function(){
		var preis = $('span.artikelpreis', this).text();
		var anzahl = $('select.updateTotal', this).val();
		var wert = Math.round(preis * anzahl*100)/100;
		var title = $('h4', this).text();
		$('span.artikelSumme', this).text(wert).format({format:"\C\H\F #,###.00", locale:'ch'});
		total += wert;
		
		if (anzahl > 0) {
			$('#warenkorbArtikel').append('<div class="warenkorbItem"><h5>' + title + '</h5><div>' + anzahl + ' * ' + preis + ' = ' + $('span.artikelSumme', this).text() +  '</div></div>');
		}
		
	});
	$('span.totalPreisValue').text(total).format({format:"#,###.00"});
};


