diff --git a/Products.java b/Products.java
index 9b95adb2aedb3e4b855223b207e2cc6b4f31b2fe..80cd8812c4f6f707297fd2da7f89d6e13873d5ed 100644
--- a/Products.java
+++ b/Products.java
@@ -20,6 +20,16 @@ public class Products { /* a good class, but not as good as cse391 */
 	);
     }
 
+    public Product iansProduct() {
+        return new Product(
+            "Pasta",
+            "Very nutritious",
+            "pasta.jpg",
+            "Bowl of pasta",
+            100.0
+        );
+    }
+
     public Product aryasProduct() {
         return new Product(
 	    "Monkey",
diff --git a/Staff.java b/Staff.java
index 016b40c016a094c7d0ab4a21f6e50ac5975de4cd..c51a78d2b22d35f1b52fb4a57f3b04f13271538d 100644
--- a/Staff.java
+++ b/Staff.java
@@ -29,6 +29,16 @@ public class Staff {
 	"My favorite plushie void the demodog chillin on the floor"
       );
     }
+
+    public Employee idelong() {
+      return new Employee(
+        "Ian",
+        "Bug Creator",
+        "Makes lots of bugs",
+        "alpaca.jpg",
+        "Alpaca with dandelion hair"
+      );
+    }
     
     public Employee agummadi() {
       return new Employee(
diff --git a/images/products/pasta.jpg b/images/products/pasta.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..cd0e027f68171a07169bd0c53ef4e6857311372f
Binary files /dev/null and b/images/products/pasta.jpg differ
diff --git a/images/staff/alpaca.jpg b/images/staff/alpaca.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ca7f0f2f1236491618ebd0dbd88838d877907a65
Binary files /dev/null and b/images/staff/alpaca.jpg differ