diff --git a/Products.java b/Products.java
index 28797e4b73b5041a427fe962db700f9e62bffb62..759096a9dccc84f66e7a9e524dd8efe5a39f6a8b 100644
--- a/Products.java
+++ b/Products.java
@@ -70,4 +70,14 @@ public class Products { /* a good class, but not as good as cse391 */
             10000
         );
     }
+
+    public Product aamangusProduct() {
+    	return new Product(
+		"Broody Chicken",
+		"It screams!",
+		"Discord Chicken.PNG",
+		"image of a broody chicken",
+		1.01
+	);
+    }
 }
diff --git a/Staff.java b/Staff.java
index 5692a66eabbc320557cb2ba485fe1c02e8ff43eb..04de58097ab5ee3fe93dea6b18cc4641df95a1b3 100644
--- a/Staff.java
+++ b/Staff.java
@@ -30,6 +30,16 @@ public class Staff {
       );
     }
 
+    public Employee mxw() {
+      return new Employee(
+          "Matt",
+          "candy thrower",
+          "tired",
+          "matt.png",
+          "matt smiling in front of a polka-dotted wall."
+      );
+    }
+
     public Employee antonio6() {
 	    return new Employee(
         "Antonio",
@@ -79,4 +89,14 @@ public class Staff {
             "panda icon"
         );
     }
+
+    public Employee aamangus() {
+    	return new Employee(
+		"Anthony",
+		"Student",
+		"studies",
+		"Discord Chicken.PNG",
+		"funny chicken"
+	);
+    }
 }	
diff --git a/images/products/cheeto.png b/images/products/cheeto.png
new file mode 100644
index 0000000000000000000000000000000000000000..f214c70fcccebf9da799deb04e4eec6b267a4d3e
Binary files /dev/null and b/images/products/cheeto.png differ
diff --git a/images/staff/Discord Chicken.PNG b/images/staff/Discord Chicken.PNG
new file mode 100644
index 0000000000000000000000000000000000000000..96fa649a65daa0aaeed5458cda9263a9edf28d21
Binary files /dev/null and b/images/staff/Discord Chicken.PNG differ
diff --git a/images/staff/matt.png b/images/staff/matt.png
new file mode 100644
index 0000000000000000000000000000000000000000..dd8176989ab173e9dc41568f7e4c3d4a69dc95b0
Binary files /dev/null and b/images/staff/matt.png differ
diff --git a/images/staff/snorlax.png b/images/staff/snorlax.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e4cb191089d41cc90ff14d6422c5bd421877da3
Binary files /dev/null and b/images/staff/snorlax.png differ