var text = new Array(7);
var author = new Array(7);
number = 0;

// textArray
text[number] = "CARE: Mattresses should be turned and/or rotated to help smooth out contours and equalize the wear and tear that normally occurs. Not all mattresses need to be turned, however, we do recommend rotation. Using the four seasons of the year as an indicator for your mattress rotation is a good way of keeping track."
author[number++] = "Tip #3"
text[number] = "SPACE: Select a mattress that gives you enough room for free, easy movement, especially if you're sleeping with a partner. Couples should select a queen- or king-size mattress to ensure that both individuals have enough space to feel comfortable."
author[number++] = "Tip #12"
text[number] = "REST TEST: Conduct the 'rest test' whenever it's time to shop for a new mattress. First, lie down on your back. Do you feel comfortable? Does the mattress gently support all points of your body? Then, get into your usual sleep position. Do you (and your partner) have enough room for free, easy movement? And remember, don't settle for anything less than perfect sleep!"
author[number++] = "Tip #2"
text[number] = "COMFORT: Mattresses don't have to be as hard as a board to be good for you, though some people may prefer a firmer feel. Today, mattresses are built with luxurious new cushioning materials and surface treatments. While these mattresses may feel more plush, the core provides necessary support for your body."
author[number++] = "Tip #7"
// keep adding items here...

increment = Math.floor(Math.random() * number);
document.write("<EM>&quot;",text[increment],"&quot;</EM><TABLE CELLPADDING=0 CELLSPACING=0 ALIGN=right BORDER=0><TR><TD CLASS=verdanacharacter>-",author[increment],"</TD></TR></TABLE>");