

	$(document).ready(function(){

		$('input').keyup(function(){
			get_price(this);
		});
		
		$('select').change(function(){
			get_price(this);
		});

		$('input').each(function(){
			get_price(this);
		});
		
		
	});

	
	
	function get_price(obj){
		var name= $(obj).attr('name');
		var tmp = name.split("[");
		if(typeof(tmp[1]) != "undefined"){
			name = tmp[1].replace("]","");
			var p_name = '#price_'+name;
			var anzahl = $('#anzahl_'+name).attr('value');
			var type =  $('#type_'+name).attr('value');
			if(typeof(anzahl) != "undefined"){
				if(anzahl.length == 0){
					anzahl = 1;
				}
			
				var link="/ajax/shop/getprice/"+name+"/"+anzahl+"/"+type+"/";
				
				$.get(link,function(data){
					$(p_name).html(data);
				});
			}
		}
	}
