 $(document).ready(function(){
	$("a.add").click(function () {

		//alert(this);
		var id = $(this).attr("id");
		//alert(id);
		//alert($("#count_"+id));
		$("#count_"+id+" option:selected").each(function () {
            //alert($(this).text());
        });
       var quantity= $("#count_"+id+" option:selected").val();
		//var title = $("em").attr("title");

		//return false;
		$.ajax({
			dataType: 'json',
  			url: "/ajax/ajax_basket.php",
			data: 
'id='+id+
'&quantity='+quantity,
			success: function(msg){
					document.location = msg.url; 
				//alert(msg);
			},
			error:  function(xhr, str){
				alert('Возникла ошибка: ' + xhr.responseCode);
			}
		});

	});
});

