I'm seeing something very odd.
<h3><%= (Date.today).strftime("%A, %B %d, %Y") %></h3>
is resulting in Wednesday, October 09, 2013 which is correct.
However, this results in Friday, October 11, 2013.
<h3><%= (Date.tomorrow).strftime("%A, %B %d, %Y") %></h3>
It completely skips Thursday (which is truly tomorrow).
Any ideas?