diff --git a/Products.java b/Products.java
index 7056ed033b61c0df4cc40e46f36e91453e48bf8f..5d72f57d10240a6069530b68b4cee53d2b3a41e1 100644
--- a/Products.java
+++ b/Products.java
@@ -117,6 +117,15 @@ public class Products { /* a good class, but not as good as cse391 */
 		"Avatar.png",
 		"Picture of Gawr Gura",
 		114514.0
+   	);
+    }
+    public Product swangsamProduct(){
+   	return new Product(
+		"Pullup Bar",
+		"It builds back",
+		"pullup.png",
+		"pullup bar image",
+		1.2
 	);
     }
 }
diff --git a/Staff.java b/Staff.java
index cc8d002343f5dd0d4133c245ec1bb0ce52e47785..d0fbd83cc474dd1dfca351b14d040aac72f85ea1 100644
--- a/Staff.java
+++ b/Staff.java
@@ -138,4 +138,13 @@ public class Staff {
 		"Shaaaaaaaaark"
 	);   
     }
+    public Employee swangsam(){
+    	return new Employee(
+		"Samuel",
+		"Student",
+		"runs",
+		"sephiroth.png",
+		"sephiroth"
+	);
+    }
 }	
diff --git a/images/products/pullup.png b/images/products/pullup.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef48b03aba8d10294dccf89f6c62025843358bb8
Binary files /dev/null and b/images/products/pullup.png differ
diff --git a/images/staff/sephiroth.png b/images/staff/sephiroth.png
new file mode 100644
index 0000000000000000000000000000000000000000..fcdf091b48968f217f1248e9ea168deff6801f11
Binary files /dev/null and b/images/staff/sephiroth.png differ