
function addtoBasket(id){
	var obj = "a#basketbtt_"+id;
	$.get('php/addbasket.php?id='+id, function(resp){
		if(resp != ""){
			$(obj).each(function(){
				$(this).not(":has(img)").html("silmək");
				$(this).attr({"href": "javascript: deletefromBasket("+id+");"});
				$(this).attr({"class": "delbasket"});
				$(this).find("img").attr({"src": "img/delfrombasket.gif"});
			});
			$("#top_basket").html(resp);
		}
	});
}

function deletefromBasket(id){
	var obj = "a#basketbtt_"+id;
	$.get('php/deletebasket.php?id='+id, function(resp){
		if(resp != ""){
			$(obj).each(function(){
				$(this).not(":has(img)").html("əlavə etmək");
				$(this).attr({"href": "javascript: addtoBasket("+id+");"});
				$(this).attr({"class": "addbasket"});
				$(this).find("img").attr({"src": "img/addtobasket.gif"});
			});
			$("#top_basket").html(resp);
		}
	});
}
