diff --git a/Products.java b/Products.java
index 1ba56f2791d9512d7f78268b9f4cdfb2e90e0640..f7ab17138186e8058796765ca230281b68d68055 100644
--- a/Products.java
+++ b/Products.java
@@ -10,6 +10,16 @@ public class Products { /* a good class, but not as good as cse391 */
 			    150.00
 			    );
     }
+	
+    public Product acsparksProduct() {
+    	return new Product(
+		"Free Beans",
+		"A bunch of free, loose beans",
+		"beans.jpg",
+		"Image of free beans",
+		1.99
+		);
+    }
 
     public Product cuperidoProduct() {
 	return new Product( 	
@@ -652,7 +662,7 @@ public class Products { /* a good class, but not as good as cse391 */
             "Coca Cola can",
             1.50
         );
-
+    }
     public Product chetan7() {
             return new Product(
                 "Porche 911",
@@ -674,5 +684,15 @@ public class Products { /* a good class, but not as good as cse391 */
 		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 6ef3e9ecb4dc70a660a035cb0782df3aefc24c37..66cdd49269978bd6f3d7eaedc36861fbdce9a6db 100644
--- a/Staff.java
+++ b/Staff.java
@@ -10,6 +10,16 @@ public class Staff {
        );
    }
 
+   public Employee acsparks() {
+	   return new Employee(
+		"Aiden Sparks",
+		"Student",
+		"Stuck in the Allen basement",
+		"beans.jpg",
+		"bean texture"
+		);
+   }
+
    public Employee ctsai7() {
 	   return new Employee(
 	   	"Calvin Tsai",
@@ -681,7 +691,7 @@ public class Staff {
 	       	"mountsi.jpeg",
 	       	"Mount Si"
 	);
-
+     }
     public Employee chetan7() {
             return new Employee(
                 "Chetan",
@@ -701,5 +711,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/products/beans.jpg b/images/products/beans.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..99510a27f2c4ebf0f64788ef3b871940a6475449
Binary files /dev/null and b/images/products/beans.jpg 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
diff --git a/images/staff/beans.jpg b/images/staff/beans.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..99510a27f2c4ebf0f64788ef3b871940a6475449
Binary files /dev/null and b/images/staff/beans.jpg differ