function addToCart(pid) {
    $.post("ajax/cart.php", { productid: pid },
        function(response){
	    if(response['status'] == "ok") {
	        $("#cart_action").html(pid+" >> ");
                $("#cart_action").fadeIn("slow", function() {$(this).fadeOut(2000);});
	    } else {
	        $("#cart_action").html("Tuote on jo korissa");
                $("#cart_action").fadeIn("slow", function() {$(this).fadeOut(2000);});
            }
	    $("#cart_products").html(response['products']);
	    if(response['products'] != 1) { 
	        $("#products_suffix").html("tta");
	    } else {
	        $("#products_suffix").html("");
	    }
	    if ($("#cart").is(':hidden') ) {
		$("#cart").slideDown("fast");
	    } else {
//            	$("#cart").effect("highlight", {}, 2000);
	    }
    	}, "json");
}



