$(document).ready(function(){
	$('.addToCart').click(function(){
		var id = $(this).attr('id');
		var anchor = $(this);
		jQuery.post('cart/add',{id:id},function(r){
			
			anchor.fadeOut('slow',function(){
				anchor.html(r).fadeIn('slow',function(){
					app_data_proxy.toURL('cart',{location:location.href});
				});
			});
		});
		return false;
	});
});