*** empty log message ***
diff --git a/scripts/wantedFunctions.php b/scripts/wantedFunctions.php
index 3ca721e..5ccce18 100644
--- a/scripts/wantedFunctions.php
+++ b/scripts/wantedFunctions.php
@@ -26,7 +26,7 @@
 		if ($date <= $now) {
 			$anonymous = $friend->getIsAnonymous();
 			if ($anonymous != 1) {
-				$name = $friend->getFirstName() . " " . $friend->getLastName();
+				$name = ucfirst($friend->getFirstName()) . " " . ucfirst($friend->getLastName());
 				$name = htmlentities($name);
 			}
 			else 
@@ -41,7 +41,12 @@
 				echo "<li $style>$name - $" . $amount . "</li>";
 			}
 			else {
-				echo "$name ";
+				if ($i % 2 == 0){
+					echo "<b>" . $name . " </b>";
+				}
+				else {
+					echo "$name ";
+				}
 			}
 		}
 	}