
/****
* A function to randomly return 1 Call to Action from among 5 possible Actions
* For use in the Related News sidebar
**/
function rndCalltoAction() 
{

var actions=new Array(7);
actions[0]="<ul type=circle><li><A class=action href='http://www.cafepress.com/cp/store/store.aspx?storeid=votg' target=_blank>Buy RTFM Gear!</A></li></ul>";
actions[1]="<ul type=circle><li><A class=action href='/About/Newsletter.html'>Subscribe Now, it's FREE!</A></li></ul>";
actions[2]="<ul type=circle><li><A class=action href='/About/SupportUs.html'>Support this site!</A></li></ul>";
actions[3]="<ul type=circle><li><A class=action href='/WhatsNew.html'>What's new</A></li></ul>";
actions[4]="<ul type=circle><li><A class=action href='http://www.cafepress.com/cp/store/store.aspx?storeid=votg' target=_blank>Buy RTFM Gear!</A></li></ul>";
actions[5]="<ul type=circle><li><A class=action href='/book.html'>Now in print!</A></li></ul>";
actions[6]="<ul type=circle><li><A class=action href='http://www.iuniverse.com/bookstore/book_detail.asp?isbn=0%2D595%2D26182%2D5' target=_blank>Buy the Book!</A></li></ul>";
actions[7]="<ul type=circle><li><A class=action href='/book.html'>See the Movie!</A></li></ul>";
actions[8]="<ul type=circle><li><A class=action href='http://search.barnesandnoble.com/booksearch/isbnInquiry.asp?userid=25FCLJF3SG&isbn=0595261825&itm=1' target=_blank>Now at Barnes & Noble!</A></li></ul>";
actions[9]="<ul type=circle><li><A class=action href='http://www.cafepress.com/cp/store/store.aspx?storeid=votg' target=_blank>Last Chance RTFM Hats!</A></li></ul>";
actions[10]="<ul type=circle><li><A class=action href='http://www.cafepress.com/cp/store/store.aspx?storeid=votg' target=_blank>Last Chance for RTFM Mugs!</A></li></ul>";

/* A Random number between 0 and 8  */
var rndNumber=Math.round(Math.random()* 10); 

document.write(actions[rndNumber]);

}
