diff --git a/Products.java b/Products.java
index 023ea8083f78e8f71b4aa0220a8eaebf725d54fa..9e3503533920ed63b8e880da758e86b25d98c2a3 100644
--- a/Products.java
+++ b/Products.java
@@ -23,6 +23,15 @@ public class Products { /* a good class, but not as good as cse391 */
 			    );
     }
 
+    public Product ekimji1Product() {
+	return new Product(
+		    "Gudetama",
+	    	"perfect",
+		    "gudetama.jpg",
+		    "Lazy egg",
+		    1000.0
+		    );
+    }
 
     public Product kevinh33Product() {
 	    return new Product(
diff --git a/Staff.java b/Staff.java
index 86303d63f1d0906f6a9916cd8ded6da8ed3c1b85..8f9762388f86088e57cb32e85383e4dd0ee6c5c6 100644
--- a/Staff.java
+++ b/Staff.java
@@ -1,5 +1,6 @@
 public class Staff {
 
+
    public Employee boschen() {
    	return new Employee(
 		"Boshan Chen",
@@ -9,7 +10,15 @@ public class Staff {
 		"umm.."
 	);
    }
-
+   public Employee ekimji() {
+	   return new Employee(
+		"Esther",
+		"student",
+		"local point demon",
+		"gudetama.jpg",
+		"gudetama with balloon"
+	);
+   }
 	
    public Employee benore() {
 	   return new Employee("Ben",
diff --git a/images/products/gudetama.jpg b/images/products/gudetama.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..1bde2dc77c41a171a9b25223e52acd05fa844e38
Binary files /dev/null and b/images/products/gudetama.jpg differ