quickfact = new Array();
quickfact[0] = "<b>Japan</b>: Kimono means, literally, thing to wear in Japanese.";
quickfact[1] = "<b>Japan</b>: The plural of kimono is kimono.";
quickfact[2] = "<b>Japan</b>: The kimono is not gender specific.";
quickfact[3] = "<b>Japan</b>: The thick obi belt is tied above the hips, and is usually very ornate.";
quickfact[4] = "<b>Rome</b>: Most all garments were made of wool.";
quickfact[5] = "<b>Rome</b>: Dress signified rank, status, office, or authority.";
quickfact[6] = "<b>Rome</b>: Women who wore togas were commonly prostitutes.";
quickfact[7] = "<b>Rome</b>: Undergarments were only worn during work or in the higher class when exercising.";
quickfact[8] = "<b>Rome</b>: Shoes were the same for both genders.";
quickfact[9] = "<b>Rome</b>: The tunic is the equivalent to a modern T-shirt.";
quickfact[10] = "<b>Rome</b>: The toga is not sewn or pinned but folded to secure it.";
quickfact[11] = "<b>Rome</b>: Men wore special signet rings used to impress a wax seal.";
quickfact[12] = "<b>Rome</b>: Women’s clothing was not elaborate compared to the men’s.";
quickfact[13] = "<b>Rome</b>: The stola is worn by women as a symbol of marriage.";
quickfact[14] = "<b>Rome</b>: Women’s tunics were called the peplos and chiton.";
quickfact[15] = "<b>Rome</b>: The toga was always worn by men in public.";
quickfact[16] = "<b>Rome</b>: The sinus would be brought up on the head for religious ceremonies.";
quickfact[17] = "<b>Rome</b>: To make a toga white, fuller’s chalk was used as dye.";
quickfact[18] = "<b>United States</b>: Current young American clothing is heavily based on music.";
quickfact[19] = "<b>United States</b>: The corset, worn in the 1800s, was originally from Europe.";
quickfact[20] = "<b>United States</b>: Most clothing in America is gender specific.";
quickfact[21] = "<b>Egypt</b>: Egyptians wore different wigs each day.";
quickfact[22] = "<b>Egypt</b>: Wigs were made from human hair or wool.";
quickfact[23] = "<b>Egypt</b>: All Egyptians wore jewelry.";
quickfact[24] = "<b>Egypt</b>: Egyptians used tweezers, razors, and combs.";

select = Math.round(Math.random()*((quickfact.length)-1));
function showfact() {
document.write(quickfact[select]);
}
showfact();
