

	$(document).ready(function(){
		$('#wakko').load('/ajCart.php?cart');
	});


	function ajCartAdd( str ) {
		
        $.ajax({
		   type: "POST",
		   url: "/ajCart.php?add",
		   data: "code=" + str + "&quant=" + $('#quantity_combo_select').val(),
		   success: function(msg){
				$('#wakko').load('/ajCart.php?cart');
				showSuccess( msg );
		   }
		 });
	}
