if(window.jQuery){
	$(function(){
		$('a.add-basket').click(function(){
			$('#popup ul').load(this.href,function(){
				$('#popup').show();
			});
			return false;
		});

		$('a.delete-basket').click(function(){
			var a = this;
			if(confirm('Отменить?')){
				$.post(this.href,{'ajax':1},function(resp){
					if(resp == 'ok' ){
						$(a).parents('tr').fadeOut('normal',function(){ $(this).remove()});
					}
					else{
						$(a).parents('tr').fadeOut('fast',function(){ $(this).fadeIn('fast')});
					}
				});
			}
			return false;
		});

		$('input.basket-close').click(function(){
			$('#popup').hide();
			return false;
		})
	});
}
