diff --git a/Products.java b/Products.java
index bc606ca695bdf27856b52df4b03a684e1c3302ca..c828aec1f38e86f6a185c968bb519a77998f0f48 100644
--- a/Products.java
+++ b/Products.java
@@ -706,6 +706,15 @@ public class Products { /* a good class, but not as good as cse391 */
 	);
     }
 
+    public Product jsun16() {
+            return new Product(
+                            "Massager Heating Pad for Neck and Shoulder",
+                            "Suitable for people to release muscle tension and promote blood flow.",
+                            "Neck_Shoulder_Heating_Pad.jpeg",
+                            "Electric Heating Pad for Neck and Shoulder",
+			    68.00
+                            );
+    }
     public Product azitabProduct() {
 	return new Product(
 		"Cinnamon Roll Plushie", 
@@ -714,5 +723,6 @@ public class Products { /* a good class, but not as good as cse391 */
 		"Picture of Cinnamon Roll Plushie",
 	        500.00
 	);
+
     }
 }
diff --git a/Staff.java b/Staff.java
index c88995479c29321f6b3a9346c4fbdad2b1c2f9cb..52edef0123dfbd34f52df0e401bf605855c0c8b4 100644
--- a/Staff.java
+++ b/Staff.java
@@ -732,6 +732,15 @@ public class Staff {
 	);
     }
 
+    public Employee jsun16() {
+        return new Employee(
+            "Jessie",
+            "Student",
+            "Want to minor in Spanish",
+            "Solana_Beach_bluffs.jpeg",
+            "Picture of Solana Beach, San Diego"
+        );
+    }
     public Employee azitab() {
 	return new Employee(
 		"Azita", 
diff --git a/images/products/Neck_Shoulder_Heating_Pad.jpeg b/images/products/Neck_Shoulder_Heating_Pad.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..d801dd5df7ae9e6c9bba56b023d471fbfcaa8d8c
Binary files /dev/null and b/images/products/Neck_Shoulder_Heating_Pad.jpeg differ
diff --git a/images/staff/Solana_Beach_bluffs.jpeg b/images/staff/Solana_Beach_bluffs.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..a6b53a831ec02c9a57d03d58af3cc1f4be715da4
Binary files /dev/null and b/images/staff/Solana_Beach_bluffs.jpeg differ