<!--
// Array Function
function makeArray() {
var args = makeArray.arguments;
for (var i = 0; i < args.length; i++) {
this[i] = args[i];
}
this.length = args.length;
}
// This array holds the descriptions and names of the pages.
var pages = new makeArray("SELECT A PAGE  ==>",
"Home",
"e-log Manufacturer",
"... message from the president",
"... e-log management",
"... log manufacturing",
"... log pre-staining",
"e-log Siding Facts",
"... how to install",
"... how to install saddle notch corners",
"... log cabin siding",
"... how to compare log siding products",
"... easy maintenance",
"... e-logs are durable",
"... e-logs are easy to replace",
"... use as interior accent",
"... wood & stain colors",
"... log siding corners",
"... cost comparison",
"e-log Photos & Projects",
"... construction video",
"... ABC's Extreme Makeover: Home Edition uses e-log in OH",
"... ABC's Extreme Makeover: Home Edition uses e-log in NC",
"... Bass Pro Shop uses e-log log siding",
"... georgia remodel",
"... tennessee resort",
"... expresso coffee hut with e-log siding",
"... new michigan home",
"... log home e-log addition",
"... warming hut log siding remodel",
"... brick home remodel into log cabin",
"... home remodel in southern michigan",
"... remodeling lobby",
"... arizona home",
"... northern michigan log siding",
"... utah river log cabin remodel",
"... interior restaurant",
"... remodel exterior cabin",
"... coffee shop remodel",
"... remodel outbuildings",
"... basement remodel using e-log",
"... school building trades",
"... remodel interior marina",
"... cement block cottage remodel",
"... pennsylvania log cabin remodel",
"Logs News & Events",
"... e-log news video",
"... general contractor",
"... e-log road house",
"... news & articles",
"Logs Siding FAQs",
"Site Map",
"Contact Pine River");
// This array hold the URLs of the pages.
var urls = new makeArray("",
"index.html",
"about-elog.html",
"e-log-siding-president.html",
"elog-management.html",
"elog-manufacturing.html",
"automated-stain-line.html",
"energy-efficient-logs.html",
"how-to-install-log-siding.html",
"saddle-notch-installation.html",
"log-cabin-siding.html",
"compare-log-siding.html",
"do-it-yourself-log-siding.html",
"e-logs-are-durable.html",
"log-siding-replacement.html",
"interior-halflog-siding.html",
"wood-log-siding-colors.html",
"log-siding-corners.html",
"cost-comparison.html",
"home-remodeling-photos.html",
"e_log_cabin.html",
"extreme-home-makeover.html",
"extreme-home-makeover-nc.html",
"Basspro.html",
"Georgia-home-remodel.html",
"Tennessee-log-siding-resort.html",
"log-siding-coffee-hut.html",
"michigan-new-elog-home.html",
"log-siding-home.html",
"Warming-hut-log-siding.html",
"brick-home-remodel.html",
"log-home-remodel.html",
"log-siding-paneling.html",
"exterior-log-siding.html",
"n-michigan-log-siding-remodel.html",
"Utah-river-log-cabin.html",
"interior-log-siding.html",
"fake-log-siding.html",
"remodelling-business.html",
"garage-remodeling.html",
"basement_remodel.html",
"school-building-trades.html",
"modular-log-siding.html",
"cement-block-remodel.html",
"Pennsylvania-cabin.html",
"log-siding-news.html",
"elog-news-video.html",
"general-contractor-links.html",
"house-logs.html",
"news-articles.html",
"log-siding-faqs.html",
"company-site-map.html",
"contact-pine-river.html");
// This function determines which page is selected and goes to it.
function goPage(form) {
i = form.menu.selectedIndex;            
if (i != 0) {
window.location.href = urls[i];  
}
}
//-->