diff --git a/Products.java b/Products.java
index bdcca185ef5c25dff2712391e1cbc939cf53d102..4f2ceb2cd494d9fe1b3dcf83029bc5ae41f2989c 100644
--- a/Products.java
+++ b/Products.java
@@ -49,6 +49,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 f09d4a4fd124ef2adb5302fa5c67c18403023f9b..53be19f58ef514368018561b636179dc039c04c7 100644
--- a/Staff.java
+++ b/Staff.java
@@ -27,6 +27,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