var valtipdata = new Array();
valtipdata[valtipdata.length] = "Choose an invitation that reflects your personality, and provides the necessary information of your wedding day events. The same theme should run throughout all of your accessory items.";
valtipdata[valtipdata.length] = "Invitations: Provide the name of the host & Bride and Groom, Day, Time, Date, and year. Address of ceremony and reception RSVP reminder";
valtipdata[valtipdata.length] = "Invitations: Mail 4-5 weeks ahead of wedding date";
valtipdata[valtipdata.length] = "Announcements: Send to those people, you are unable to invite but whom you wish to inform of your marriage. These are to be sent out immediately following the wedding date.";
valtipdata[valtipdata.length] = "Reception Card: To be included with invitations. They convey the time and place of reception. They may also be used for certain guests for different wedding activities.";
valtipdata[valtipdata.length] = "Response Card: Included with each invitation. Replies will give you the total number of guest who will be attending. Request a response at least 2 weeks of wedding.";
valtipdata[valtipdata.length] = "Thank You Cards: To thank your guests for sharing in your happy event within 2 weeks of your wedding.";
valtipdata[valtipdata.length] = "Gratuity Cards: Discretely pay for your wedding services, with your payment concealed in a folding card.";
valtipdata[valtipdata.length] = "Ask for a true sample of the paper/envelopes - oftentimes,  brides can be disappointed with large corporations who offer less than quality grades/colours than originally expected.";
valtipdata[valtipdata.length] = "Make sure you have a PROOF of your information - all name spellings, locations, times, etc. And examine the 'font' style to make sure the information is attractive but easy to read for your expected guests.";
valtipdata[valtipdata.length] = "Delivery - be sure all shipping is included to avoid further, unexpected charges and allow yourself a lot of lead time.";
valtipdata[valtipdata.length] = "Ask if any assembly is required BEFORE you receive your invitations. You may need extra time if folding or a pretty bow needs to be tied on each.";
valtipdata[valtipdata.length] = "Avoid using a sponge applicator to seal the envelopes. Water damage may occur.";
valtipdata[valtipdata.length] = "Allow six weeks (prior to mail out date) when ordering your invitations to avoid a rush fee.";
valtipdata[valtipdata.length] = "The perfect wedding theme will be different for each couple. So use your imagination and be creative... this day is a once in a life time!";
valtipdata[valtipdata.length] = "Don't over estimate the total number of invitations needed. Remember it's 'one per household'.";

function randNUM(topnum){
  topnum--;
  var randnum = (Math.random()*100);
  var numjump = 100/topnum;
  return (Math.round(randnum/numjump));
}

function showRandomTip(){
  var rnum = randNUM(valtipdata.length);
  var counter = 0;

  rnum = randNUM(valtipdata.length);
  
  document.writeln(valtipdata[rnum]);
}