$(document).ready(function(){
	$(".tobag").click(function(){
		id=$(this).attr("id");
		$("#bag").load("/catalogue/",{addbasketid:id});
		alert('Товар добавлен в корзину');
	})
	
	var itemscost=$("#itemscost").val();
	
	$("#deliveryform").change(function(){
		var deliverytype=$(this).val();
		
		if (deliverytype==0)	
			{	
			$("#deliverycost").html(deliverycost);
			$("#fullcost").html(Number(deliverycost)+Number(itemscost));			
			$("#deliverytd").html("Доставка");
			$("#adrestr").show();
			}
		if (deliverytype==1)	
			{
			$("#deliverycost").html('0');
			$("#fullcost").html(itemscost);
			$("#deliverytd").html("Доставка");
			$("#adrestr").hide();
			}
		if (deliverytype==2)
			{
			$("#deliverycost").html('?');
			$("#fullcost").html(itemscost);
			$("#deliverytd").html("Стоимость доставки уточняется при оформлении заказа");
			$("#adrestr").show();
			}
		
	})
});

