diff --git a/Products.java b/Products.java
index 8f1d4a79969f48e5c81ac0b58df1ffdce45531d5..d8453da01a4f35e92d8ed53002e0801f7cadb125 100644
--- a/Products.java
+++ b/Products.java
@@ -69,6 +69,16 @@ public class Products { /* a good class, but not as good as cse391 */
         );
     }
 
+    public Product isaacsProduct() {
+	return new Product(
+	    "Bucolic Green Hills",
+	    "Take a deep breath and relax",
+	    "windows_xp_bliss.jpeg",
+	    "rolling grass fields, blue skies, white clouds",
+	    100000
+        );
+    }
+
     public Product aamangusProduct() {
     	return new Product(
 		"Broody Chicken",
diff --git a/Staff.java b/Staff.java
index 17b35c5c2f88374a055388b5429f90dd35bad1c3..513994bb49ab2efc2ad2319487839724eea06eca 100644
--- a/Staff.java
+++ b/Staff.java
@@ -88,6 +88,16 @@ public class Staff {
         );
     }
 
+    public Employee isaacwu() {
+        return new Employee(
+	    "Isaac",
+	    "Programmer",
+	    "Can I go to sleep now?",
+	    "icon.jpeg",
+	    "angrily studying"
+       );
+    }
+
     public Employee aamangus() {
     	return new Employee(
 		"Anthony",
diff --git a/images/products/windows_xp_bliss.jpeg b/images/products/windows_xp_bliss.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..c37a8469d162a3b0bf2ee9818ae122faf93184bb
Binary files /dev/null and b/images/products/windows_xp_bliss.jpeg differ
diff --git a/images/staff/icon.jpeg b/images/staff/icon.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..9b50ea9ddd8fead4263c59528af2bd2fd0631c40
Binary files /dev/null and b/images/staff/icon.jpeg differ