diff --git a/Products.java b/Products.java
index bba4da9909e0e1a0c575d11773a476a117151334..9167178ecaf5223a1c04f90164630e2c07f274c7 100644
--- a/Products.java
+++ b/Products.java
@@ -80,6 +80,26 @@ public class Products { /* a good class, but not as good as cse391 */
         );
     }
 
+    public Product raosProduct() {
+	return new Product(
+	    "Keychain",
+	    "A cool keychain",
+	    "keychain.jpg",
+	    "image of a cool keychain",
+	    5.95
+	);
+    }
+
+    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 87918df52f804bd76219a07dccadfe33db199f27..0b01758a5b7e77ea116c7c173055e1fd26e4e8cc 100644
--- a/Staff.java
+++ b/Staff.java
@@ -98,6 +98,26 @@ public class Staff {
         );
     }
 
+    public Employee kgrao() {
+	return new Employee(
+	    "Rao",
+	    "Student",
+	    "studies",
+	    "rao.jpg",
+	    "A dog!"
+	);
+    }
+
+    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/keychain.jpg b/images/products/keychain.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..7afcab65b7713ccf75adaeab9183e0347a0bc800
Binary files /dev/null and b/images/products/keychain.jpg differ
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
diff --git a/images/staff/rao.jpg b/images/staff/rao.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f0e5ebea443e80be0a07d37989e0f874fbf00261
Binary files /dev/null and b/images/staff/rao.jpg differ