diff --git a/Products.java b/Products.java
index 415f0712b90f270c732d9b41914e69990eb53a7e..1ddf4951655384773f5ca304cdb7026752936ca3 100644
--- a/Products.java
+++ b/Products.java
@@ -672,6 +672,16 @@ public class Products { /* a good class, but not as good as cse391 */
 		"lindt.jpg",
 		"Picture of a lindt milk chocolate package",
 		2.00
+	);
+	        }
+
+    public Product sprofit() {
+	return new Product(
+	    "Baseball Glove",
+	    "Premium leather baseball glove",
+	    "BaseballGlove.jpeg",
+	    "Picture of a Rawlings baseball glove",
+	    399.99
 	);
     }
 }
diff --git a/Staff.java b/Staff.java
index adf3af820734494960a3fe7622b5067655258688..b6b48d54bbbfe2b08c9ce7c7e451e3c75c375a83 100644
--- a/Staff.java
+++ b/Staff.java
@@ -702,5 +702,15 @@ public class Staff {
 		"picture of a coffee"
 		); 
     }
+
+    public Employee sprofit() {
+	return new Employee(
+	    "Sam",
+	    "Student",
+	    "EE Student",
+	    "TimLIncecum.jpeg",
+	    "Picture of my favorite pitcher"
+        );
+    }
 }	
 
diff --git a/images/products/BaseballGlove.jpeg b/images/products/BaseballGlove.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..26ce9b5301f71cb54d02a16c5c4dc131b3b86ff3
Binary files /dev/null and b/images/products/BaseballGlove.jpeg differ
diff --git a/images/staff/TimLIncecum.jpeg b/images/staff/TimLIncecum.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..58391c3f6177c08484e2506783e2313377461c41
Binary files /dev/null and b/images/staff/TimLIncecum.jpeg differ