function basked_add(id){
    var pos=jQuery("#basket_menu").offset();
 	jQuery("#cc_basket"+id).css('position','fixed').animate({
 		'left':pos.left,
  		'top':pos.top,
  		'opacity':0
 		}, 300,'linear', function () {jQuery("#cc_basket"+id).remove()});
	jQuery.ajax({
  		type: "GET",
  		url: 'index.php?option=com_cobacatalog&no_html=1&tag=basket&id='+id,
  		dataType: "html",
  		beforeSend: function(){
      		jQuery('#basket_menu').css( "background", "url('components/com_cobacatalog/images/pic/spinner.gif') no-repeat 80% 50%" );
    	},
    	success: function (data, textStatus) {
           jQuery('#basket_menu').css( "background", "none" )
           jQuery('#basket_menu').html(data);
    	}
 	});
	jQuery.ajax({
  		type: "POST",
  		url: 'index.php?option=com_cobacatalog&no_html=1&tag=sub_basket',
  		dataType: "html",
        data:{dat:jQuery('#cc_integral_form').serialize()},
  		beforeSend: function(){
      		jQuery('#basket_menu').css( "background", "url('components/com_cobacatalog/images/pic/spinner.gif') no-repeat 80% 50%" );
    	},
    	success: function (data, textStatus) {
           jQuery('#basket_menu').css( "background", "none" )
           jQuery('#cc_art_field32').html(data);
    	}
 	});
    
     //jQuery.post('index.php?option=com_cobacatalog&no_html=1&tag=sub_basket',{dat:jQuery('#cc_integral_form').serialize()});
    
 	return false;  
}
