// Script provided by esapplications.com
var m_count = 0;
m_items = new Array(
"Phone: (931) 267-7894",
"Sparta, TN",
"",
"For a free price quote:*",
"Please call or email us:",
"Size",
"Materials(siding, roofing)",
"Type(barn, shed, etc.)",
"And be sure to give us",
"your Phone Number",
"Email Homer Lay Barns",
"*Prices will vary considerably for options, please call for most accurate quote."
)
while (m_count < 12){ // equals the # of m_items
document.write(m_items[m_count]+"
");
m_count++;
}