/*  JScript source code for Best Provision Co., Inc.

    Written By:   Matthew Ondo - http://www.matthewondo.com - ondomatt@gmail.com
    Written For:  Best Provision Co., Inc. - http://www.bestprovision.com

*/

function which(page, product) {
    navigation(page); // Executes Navigation Function
    if (product == "" || product == null) { // Checks to see if it is on a product page or not
        if (page == "glutenfree") {
            header(page); // Executes header function and passes current page through
            footer();
        }
        else {
            var c = document.getElementById(page);
            c.className = 'current'; // Sets class Current to current page on Navigation Bar
            header(page); // Executes header function and passes current page through
            footer(); // Executes footer function
        }
    }
    else {
        var c = document.getElementById(page);
        var p = document.getElementById(product);
        c.className = 'current'; // Sets class Current to current page on Navigation Bar
        p.className = 'current_p';
        header(product); // Executes header function and passes current page through
        footer(); // Executes footer function
    }
}

function header(page) { 
   // This displays the correct header. Page name is passed through and used in the picture name
    var h = document.getElementById("header");
    var h1 = '<img src="images/header_' + page + '.png" alt="Best Provision Co., Inc. Header" />';
    h.innerHTML = h1; // Writes to page
}

function navigation(page) {
    // Writes the Navigation Bar to the page
    var n = document.getElementById("navigation");
    if (page != 'products') {
        var n1 = '<ul id="nav">'
           + '<li id="home"><a href="index.htm">Home</a></li>'
           + '<li id="about"><a href="about.htm">About Us</a></li>'
           + '<li id="news"><a href="news.htm">News</a></li>'
           + '<li id="products"><a href="products.htm">Products</a></li>'
           + '<li id="contact"><a href="contact.htm">Contact Us</a></li>'
           + '</ul>';
        n.innerHTML = n1;
    }

    else {
        var n1 = '<ul id="nav">'
           + '<li id="home"><a href="index.htm">Home</a></li>'
           + '<li id="about"><a href="about.htm">About Us</a></li>'
           + '<li id="news"><a href="news.htm">News</a></li>'
           + '<li id="products"><a href="products.htm">Products</a></li>'
           + '<li id="contact"><a href="contact.htm">Contact Us</a></li>'
           + '</ul>'
           + '<ul id="nav_p">'
           + '<li id="frankfurters"><a href="frankfurters.htm">Beef Frankfurters</a></li>'
           + '<li id="roastbeef"><a href="roast.htm">Roast Beef</a></li>'
           + '<li id="corned"><a href="corned.htm">Corned Beef</a></li>'
           + '<li id="pastrami"><a href="pastrami.htm">Pastrami</a></li>'
           + '<li id="misc"><a href="miscproducts.htm">Beef Bacon &amp; Misc.</a></li>'
           + '</ul><br />';
        n.innerHTML = n1;
    }

}

function goback() {
    history.back();
}

function footer() {
    // Writes footer to the page
    var f = document.getElementById("footer");
    var browserName = navigator.appName;
    if (browserName == "Microsoft Internet Explorer") {
        var f1 = '<div>144 Avon Ave. Newark, NJ 07108 - Phone: 800-631-4466 - Phone: 973-242-5000 - Fax: 973-648-0041</div>'
           + '<div style="font-size: small;">Website design by: <a href="http://www.mattondo.com" target="_best">Matthew Ondo</a><a href="http://validator.w3.org/check?uri=referer"> Valid XHTML 1.0 Transitional</a></div>'
           + '<div style="font-size: small;">Please use <a href="http://www.mozilla.com/en-US/firefox/">Mozilla Firefox</a>, or <a href="http://www.google.com/chrome/">Google Chrome</a> as your internet browser to view all features of BestProvision.Com</div>';
        f.innerHTML = f1;
    }
    else {
        var f1 = '<div>144 Avon Ave. Newark, NJ 07108 - Phone: 800-631-4466 - Phone: 973-242-5000 - Fax: 973-648-0041</div>'
           + '<div style="font-size: small;">Website design by: <a href="http://www.mattondo.com" target="_best">Matthew Ondo</a><a href="http://validator.w3.org/check?uri=referer"> Valid XHTML 1.0 Transitional</a></div>';
        f.innerHTML = f1;
    }
}
