diff --git a/Products.java b/Products.java
index c531bc37c793bac0cd2960c985a40724b57904ba..74173da08263be0c94dcb162d643431f4d83870b 100644
--- a/Products.java
+++ b/Products.java
@@ -58,6 +58,16 @@ public class Products { /* a good class, but not as good as cse391 */
 	);
     }
 
+    public Product ataberksProduct() {
+        return new Product(
+            "Turkish Dumplings",
+            "Dough often filled with beef",
+            "turkishDumplings.jpg",
+            "The dumplings themselves",
+            7.25
+        );
+    }
+
     public Product iansProduct() {
         return new Product(
             "Pasta",
diff --git a/Staff.java b/Staff.java
index 79b12861ddae9ee69ce0c3679aba6ac2f11580ca..a7fcf2f4a5214bdf8fafb5c5af2891d5f36e8186 100644
--- a/Staff.java
+++ b/Staff.java
@@ -36,6 +36,16 @@ public class Staff {
       );
     }
 
+    public Employee ayildiz(){
+      return new Employee(
+        "Ataberk",
+        "Funny guy",
+        "Hasn't slept in days",
+        "ataberk.png",
+        "Go Dawgs"
+      );
+    }
+
     public Employee ank05(){
     	return new Employee(
 	  "Ankhita",
diff --git a/images/products/turkishDumplings.jpg b/images/products/turkishDumplings.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e288dcc72cc129e43fa6c40d9bab81b55d1bf264
Binary files /dev/null and b/images/products/turkishDumplings.jpg differ
diff --git a/images/staff/ataberk.png b/images/staff/ataberk.png
new file mode 100644
index 0000000000000000000000000000000000000000..0c09e4002a45321fc419236acb910776046e9eba
Binary files /dev/null and b/images/staff/ataberk.png differ