diff --git a/Products.java b/Products.java
index c4152a0ecc112d2c7d666569621afbfdec633061..415f0712b90f270c732d9b41914e69990eb53a7e 100644
--- a/Products.java
+++ b/Products.java
@@ -10,6 +10,16 @@ public class Products { /* a good class, but not as good as cse391 */
 			    150.00
 			    );
     }
+	
+    public Product acsparksProduct() {
+    	return new Product(
+		"Free Beans",
+		"A bunch of free, loose beans",
+		"beans.jpg",
+		"Image of free beans",
+		1.99
+		);
+    }
 
     public Product cuperidoProduct() {
 	return new Product( 	
diff --git a/Staff.java b/Staff.java
index 7613c7b8d648fa819be00d3a7c1f36fa519bd53a..adf3af820734494960a3fe7622b5067655258688 100644
--- a/Staff.java
+++ b/Staff.java
@@ -10,6 +10,16 @@ public class Staff {
        );
    }
 
+   public Employee acsparks() {
+	   return new Employee(
+		"Aiden Sparks",
+		"Student",
+		"Stuck in the Allen basement",
+		"beans.jpg",
+		"bean texture"
+		);
+   }
+
    public Employee ctsai7() {
 	   return new Employee(
 	   	"Calvin Tsai",
diff --git a/images/products/beans.jpg b/images/products/beans.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..99510a27f2c4ebf0f64788ef3b871940a6475449
Binary files /dev/null and b/images/products/beans.jpg differ
diff --git a/images/staff/beans.jpg b/images/staff/beans.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..99510a27f2c4ebf0f64788ef3b871940a6475449
Binary files /dev/null and b/images/staff/beans.jpg differ