function getLightboxURL(sid,aid)
{
	anzahl = J('#anzahl'+aid).val();
	href = "artikeldetails.php?sid="+sid+"&aid="+aid+"&anzahl="+anzahl+"&addfast=1&height=590&width=800";
	J('#artikel'+aid).attr('href',href);
	//alert('Kurze Wartungsarbeiten. Wir bitten um Ihr Verständnis');
}

function aktualisiereRezeptpreis()
{
	aid = J('#rezeptForm input[name|="aid"]').val();
	rezeptart = J('#rezeptForm input[name|="rezept"]:checked').val();
	
	J.ajax({
		type: 'POST',
		url: 'artikeldetails.php',
		data: 'aid='+aid+'&rezept='+rezeptart+'&addfast=1',
		success: function(response){
			J('#SLB-Image #content').html(response);
		}
	});
}
