diff --git a/Products.java b/Products.java
index d1fd437d29028a0856b1f849482ef4cc2dc57d39..a7be9754003635b41517482addd05a4281818b62 100644
--- a/Products.java
+++ b/Products.java
@@ -557,4 +557,14 @@ public class Products { /* a good class, but not as good as cse391 */
                 4.99
         );
     }
+
+    public Product jz283() {
+            return new Product(
+                "McLaren 720s",
+                "A light and strong supercar",
+                "720s.jpeg",
+                "Picture of the supercar",
+                209900.00
+        );
+    }
 }
diff --git a/Staff.java b/Staff.java
index e18af91c0914eb811c971c381b65558dd1cab114..8f45498ad7c83e48b6a64ed7e57e68fc5ab4d7d3 100644
--- a/Staff.java
+++ b/Staff.java
@@ -578,4 +578,14 @@ public class Staff {
                 "Picture of the ocean"
         );
     }
+
+     public Employee jz283() {
+            return new Employee(
+                "Neil",
+                "Student",
+                "fan of F1",
+                "mclaren_24.jpg",
+                "Picture of the McLaren F1 car"
+        );
+    }
 }	
diff --git a/images/products/720s.jpg b/images/products/720s.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6160995f2b7385d3ccb06acf24692b6aef7ce0f9
Binary files /dev/null and b/images/products/720s.jpg differ
diff --git a/images/staff/mclaren_24.jpg b/images/staff/mclaren_24.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..3f1e733c316dfcf0f21982b7db4ce494b30487fa
Binary files /dev/null and b/images/staff/mclaren_24.jpg differ