function text() {
};

text = new text();
number = 0;

// textArray
text[number++] = "To protect against mildew, use a top quality latex paint, and clean when necessary with bleach/detergent solution. Consider installing an exhaust fan in high moisture areas."
text[number++] = "Paint heavy wear areas that require regular cleaning (e.g., doors, window sills and trim) with a top quality latex paint, because this type of paint offers both durability and easier cleaning capability."
text[number++] = "Top quality latex paints do not tend to yellow, nor does non-yellowing varnish. Alkyd paints, because of their curing mechanism, do tend to yellow, particularly in areas that are protected from sunlight."
text[number++] = "Higher quality latex paints contain more binder, which helps prevent stains from penetrating the painted surface, allowing for easy removal."
text[number++] = "In high traffic areas, choose a semigloss or gloss rather than a flat sheen level. Clean painted surfaces with a soft cloth or sponge and non-abrasive cleansers; rinse with clean water."
text[number++] = "When fading/poor color retention is a result of chalking, it is necessary to remove as much of the chalk as possible (see Chalking). In repainting, be sure to use a quality exterior house paint in colors recommended for exterior use."
text[number++] = "Remove any mildew from surfaces by scrubbing with a diluted household bleach solution (one part bleach, three parts water), while wearing rubber gloves and eye protection. Rinse thoroughly."
text[number++] = "Allow masonry surfaces to cure for at least 30 days, and ideally for a full year, before painting. If this is not possible, the painter should apply a quality, alkali-resistance sealer or latex primer, followed by a top quality 100 percent acrylic latex exterior paint."
text[number++] = "Low quality latex semigloss and gloss paints can have poor print resistance, especially in warm, damp conditions. Acrylic latex paints generally have better print resistance than vinyl latex paints."
text[number++] = "New substrates should be primed/sealed before applying the top coat to ensure a uniformly porous surface. Without the use of a primer or sealer, a second coat of paint will more likely be needed."
// keep adding items here...

increment = Math.floor(Math.random() * number);

document.write(text[increment]);

