diff --git a/Products.java b/Products.java
index f81aa99c02ed9ec116ec645c3b02bd26a391a2ff..eb50fd05c819206c44f3e7df16de9af1f63eb334 100644
--- a/Products.java
+++ b/Products.java
@@ -507,4 +507,23 @@ public class Products { /* a good class, but not as good as cse391 */
 		4.99
 	);
     }
+
+	public Product samsharProduct() {
+	    return new Product(
+		"Spray Ketchup",
+		"Ketchup that you can spray on",
+		"ketchup.jpg",
+		"Example image of spray on ketchup",
+		4.99
+	);
+    }
+	public Product SprayKetchup() {
+        return new Product(
+            "SprayKetchup",
+            "Spray on Ketchup",
+            "ketchup.jpg",
+            "An image of what a spray on ketchup bottle would look like",
+            5.99
+        );
+    }
 }
diff --git a/Staff.java b/Staff.java
index 6296de3c79124dbef2a33895a833d0f086ed25c2..bc20f125dd411b0ac0a5c907003abd95c45015b0 100644
--- a/Staff.java
+++ b/Staff.java
@@ -538,4 +538,14 @@ public class Staff {
 		"Picture of the ocean"
 	);
     }
+
+    public Employee samshar() {
+            return new Employee(
+                "Sami",
+                "Student",
+                "Working hard",
+                "picture.jpg",
+                "Picture of women playing volleyball"
+        );
+    }
 }	
diff --git a/images/products/ketchup.jpg b/images/products/ketchup.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f727096dcaaedb13e31d75f909018564a69bc9cf
Binary files /dev/null and b/images/products/ketchup.jpg differ
diff --git a/images/products/picture.jpg b/images/products/picture.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..55786d94bb6545820ab8b61b038eae37ee5a8d9c
Binary files /dev/null and b/images/products/picture.jpg differ
diff --git a/images/staff/ketchup.jpg b/images/staff/ketchup.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f727096dcaaedb13e31d75f909018564a69bc9cf
Binary files /dev/null and b/images/staff/ketchup.jpg differ
diff --git a/images/staff/picture.jpg b/images/staff/picture.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..55786d94bb6545820ab8b61b038eae37ee5a8d9c
Binary files /dev/null and b/images/staff/picture.jpg differ