diff --git a/Products.java b/Products.java
index 9b199058950f2af9963acb23f50dd945094b9493..ae50748ecfe7f5aff6079c90a51250dd13bcc551 100644
--- a/Products.java
+++ b/Products.java
@@ -412,4 +412,14 @@ public class Products { /* a good class, but not as good as cse391 */
 		5.55
 	);
     }
+
+    public Product cvanleerProduct() {
+	return new Product(
+		"Milky Way",
+		"Contains chocolate, caramel, nougat and you",
+		"galaxy.jpg",
+		"A yellowish galaxy in space",
+		27000.00
+	);
+    }
 }
diff --git a/Staff.java b/Staff.java
index 46ed28f2d9eca685bbc6b7f09a36d0e884e457d6..42fc934f576cb63a426ae13c4075806696d5175c 100644
--- a/Staff.java
+++ b/Staff.java
@@ -443,4 +443,14 @@ public class Staff {
 		"Person skiing"
 	 );
     }
+    
+    public Employee cvanleer() {
+	    return new Employee(
+		"Cole",
+		"Security Officer",
+		"Likes to eat everything",
+		"kirby_sword.png",
+		"Kirby with a sword"
+	 );
+    }
 }	
diff --git a/images/products/galaxy.jpg b/images/products/galaxy.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6cde4ae417015ba639e0e7a9176333d64aed4f7c
Binary files /dev/null and b/images/products/galaxy.jpg differ
diff --git a/images/staff/kirby_sword.png b/images/staff/kirby_sword.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e66ae7897d2defaaed7dbeaeebbaad9874ce8ee
Binary files /dev/null and b/images/staff/kirby_sword.png differ