$(document).ready(function(){   
  $("a.atc").one("click", function(event) {
	var rawID = $(this).attr('id');
	var myFormID = rawID.slice(3);
		$.ajax({
		  url: "inc/jaxupdate.php",
	      type: "POST",
	      data: 'id=' + myFormID,
      success: function() {
        $('#' + rawID ).parent().html("<a class=\"rfc\" href=\"index.php?category=cart\">view cart</a> &nbsp;<span style=\"font-size: 11px; padding: 3px; border: 1px solid #999; position: relative; background: #ffcccc;\">in cart</span>")
			.hide()
	        .fadeIn(1000, function() {
        });
 		$('#cart' ).load('inc/jaxupdate.php?up=viewcart')
	        .hide()
	        .fadeIn(1000, function() {
        });
      	
   	  }
    });
    return false;
  });


 







});