﻿//navigation menu for all pages

var url = location.href;

if (url.match("index.html") || (url.match("www.bedfordweaving.com") && url.length == 30) || (url.match("localhost") && url.length == 45))
    document.writeln("<a href=\"index.html\"><img src=\"media/webimg/home-currentpage.png\" alt=\"Home\" /></a><hr />");
else
    document.writeln("<a href=\"index.html\"><img src=\"media/webimg/home.png\" alt=\"Home\" /></a><hr />");
    
if (url.match("fiberglass.html"))
    document.writeln("<a href=\"fiberglass.html\"><img src=\"media/webimg/fiberglass-currentpage.png\" alt=\"Fiberglass Fabrics\" /></a><hr />");
else
    document.writeln("<a href=\"fiberglass.html\"><img src=\"media/webimg/fiberglass.png\" alt=\"Fiberglass Fabrics\" /></a><hr />");

if (url.match("acetate.html"))
    document.writeln("<a href=\"acetate.html\"><img src=\"media/webimg/acetate-currentpage.png\" alt=\"Acetate Fabrics\" /></a><hr />");
else
    document.writeln("<a href=\"acetate.html\"><img src=\"media/webimg/acetate.png\" alt=\"Acetate Fabrics\" /></a><hr />");
    
if (url.match("nylon.html"))
    document.writeln("<a href=\"nylon.html\"><img src=\"media/webimg/nylon-currentpage.png\" alt=\"Nylon Fabrics\" /></a><hr />");
else
    document.writeln("<a href=\"nylon.html\"><img src=\"media/webimg/nylon.png\" alt=\"Nylon Fabrics\" /></a><hr />");

if (url.match("polyester.html"))
    document.writeln("<a href=\"polyester.html\"><img src=\"media/webimg/polyester-currentpage.png\" alt=\"Polyester Fabrics\" /></a><hr />");
else
    document.writeln("<a href=\"polyester.html\"><img src=\"media/webimg/polyester.png\" alt=\"Polyester Fabrics\" /></a><hr />");

if (url.match("weaving.html"))
    document.writeln("<a href=\"weaving.html\"><img src=\"media/webimg/weaving-currentpage.png\" alt=\"Weaving Capacity\" /></a><hr />");
else
    document.writeln("<a href=\"weaving.html\"><img src=\"media/webimg/weaving.png\" alt=\"Weaving Capacity\" /></a><hr />");

if (url.match("contact.html") || url.match("sendmail.php"))
    document.writeln("<a href=\"contact.html\"><img src=\"media/webimg/contact-currentpage.png\" alt=\"Contact Us\" /></a><hr />");
else
    document.writeln("<a href=\"contact.html\"><img src=\"media/webimg/contact.png\" alt=\"Contact Us\" /></a><hr />");