diff --git a/.Products.java.swp b/.Products.java.swp
new file mode 100644
index 0000000000000000000000000000000000000000..856f697b53a099f4ba27fe6464a3414c35874c61
Binary files /dev/null and b/.Products.java.swp differ
diff --git a/Products.java b/Products.java
index c0bbeaccfa4672ef43462867f6ee28a42d6e63f9..d1fd437d29028a0856b1f849482ef4cc2dc57d39 100644
--- a/Products.java
+++ b/Products.java
@@ -401,6 +401,17 @@ public class Products { /* a good class, but not as good as cse391 */
 	);
     }
 
+    public Product zliu44Product(){
+        return new Product (
+                "Coffee mug",
+                "Made by pure clay and human made not by machine",
+                "mug.jpg",
+                "a good looking mug is on the table",
+                25.99
+        );
+    }
+
+
     public Product ryrozProduct() {
 	return new Product(
 		"A broken computer",
diff --git a/Staff.java b/Staff.java
index 5656c55315e620ac2e7b520663158bc194185cc4..e18af91c0914eb811c971c381b65558dd1cab114 100644
--- a/Staff.java
+++ b/Staff.java
@@ -430,6 +430,16 @@ public class Staff {
 		"Sun setting behind ocean"
 	);
     }
+   
+   public Employee zliu44(){
+        return new Employee(
+                "Leo Liu",
+                "Student",
+                "I am a music producer",
+                "yoyo.jpg",
+                "favorite rapper"
+        );
+    }
 
     public Employee ryroz() {
 	return new Employee(
diff --git a/images/staff/mug.jpg b/images/staff/mug.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6ceaf8855db337cac6ef489c7f5223851fd8c714
Binary files /dev/null and b/images/staff/mug.jpg differ
diff --git a/images/staff/yoyo.jpg b/images/staff/yoyo.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..c0006a7282914c321181ca188f9fbf697023ae62
Binary files /dev/null and b/images/staff/yoyo.jpg differ