diff --git a/Products.java b/Products.java
index 9b199058950f2af9963acb23f50dd945094b9493..9d5e51389bc8895042946e564396feda0f7bb47a 100644
--- a/Products.java
+++ b/Products.java
@@ -412,4 +412,14 @@ public class Products { /* a good class, but not as good as cse391 */
 		5.55
 	);
     }
+
+    public Product spzappaProduct() {
+	return new Product(
+		"Elkay LZS8WSLK EZH2O Bottle Filling Station",
+		"greatest water fountain of all time",
+		"waterfountain.png",
+		"Water fountain w/ water bottle filler",
+		1312.99		
+	);
+    }
 }
diff --git a/Staff.java b/Staff.java
index 46ed28f2d9eca685bbc6b7f09a36d0e884e457d6..b1f64922640ad72d27489cf2100da162080fdecd 100644
--- a/Staff.java
+++ b/Staff.java
@@ -443,4 +443,14 @@ public class Staff {
 		"Person skiing"
 	 );
     }
+
+    public Employee spzappa() {
+	 return new Employee(
+		"Sam",
+		"Student",
+		"just failed a midterm",
+		"stickman.png",
+		"stick man"
+	 );
+    }
 }	
diff --git a/images/products/waterfountain.png b/images/products/waterfountain.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae6cae2943d771ee9948084e4fad4f28052288eb
Binary files /dev/null and b/images/products/waterfountain.png differ
diff --git a/images/staff/stickman.png b/images/staff/stickman.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c67aa572910fd1d0296e8d8c9ccc998a6c52f9e
Binary files /dev/null and b/images/staff/stickman.png differ