diff --git a/Products.java b/Products.java
index 91763b30d8f21c7fec98f94116d6a1a7dc2fb0b9..3183b4f066bbedb8f7010d31ba676ca65433ac9d 100644
--- a/Products.java
+++ b/Products.java
@@ -98,4 +98,14 @@ public class Products { /* a good class, but not as good as cse391 */
 		1.01
 	);
     }
+
+    public Product skuttyProduct() {
+	return new Product(
+	    "Rake",
+	    "A rake to gather leaves",
+	    "rake.jpg",
+	    "image of a rake",
+	    5959.59
+	);
+    }
 }
diff --git a/Staff.java b/Staff.java
index 874f89ad32e96dc859f0741000e2c3190e2986b5..5e4640618c3adf8ce20ab9b9fa066487f65bba3b 100644
--- a/Staff.java
+++ b/Staff.java
@@ -117,4 +117,14 @@ public class Staff {
 		"funny chicken"
 	);
     }
+
+    public Employee skutty() {
+        return new Employee(
+	    "Sriram",
+	    "Student",
+	    "sleeping",
+	    "cake.jpg",
+	    "cake"
+        );
+    }
 }