Perhaps you've already noticed these, but I found a few mistakes in the javascript in 0.2.4.7:
Two of them are in the art exhibit in the museum:
The file name for the pregnancy image is "pregnancy exhibition 1.jpg", not "pregnant exhibition 1.jpg"
The domination art has a bad condition, says "if $playerPath = "dom"" instead of "if $playerPath == "dom""
For the Annie aquarium date, the condition used "=" instead of "==". Says:
"if $annie.friendtitle == "Acquaintance" || $annie.friendtitle = "Friend""
Should say:
"if $annie.friendtitle == "Acquaintance" || $annie.friendtitle == "Friend""