Is there a WP widget to display random text strings. Here is the one I'm using in blogger.com Unfortunately, it is in Java Script.
<script type="text/javascript">
var numquotes = 2;
quotes = new Array(numquotes+1);
quotes[1] = "Daily prayer is a time to talk with your Friend";
quotes[2] = "Daily scripture reading is a reward you give yourself";
var ran = Math.round((numquotes-1)*Math.random())+1
document.write(quotes[ran] + '<p style="text-align:right;">');
</script>
The blog I need help with is mormonsite.wordpress.com.