/* author: Bloomingdale Communications 

Horizontal Navigation Bar

The number of links can be increased by adding a new link number at the bottom 
and adding more link name and address variables (ie var LinkTwelveName = "Another";)
*/

// START OF BAR ATTRIBUTES ------------------------------------------------>

//default font color and style if the style sheet fails
var DefaultFontFace = "Times New Roman";
var DefaultFontSize = "2";
var DefaultFontColor = "#808080";


//link bar background color
var BGcolor = "#270b77";

//size of border around the bar
var Border = "0";

//width of the nav bar
var NavWidth = "100%";

//alignment of the ENTIRE Bar
var EntireBarAlignment = "center";

//alignment of the text in the bar
var BarTextAlignment = "center";

// END OF BAR ATTRIBUTES ------------------------------------------------>


// START OF LINK/TEXT ATTRIBUTES ---------------------------------------->

// class links to css sheet
var AttribClass = "nav_link";
var MouseoverColor = "#000000";
var MouseoutColor = "#ffffff";

var attrib = "class=\"" + AttribClass + "\" onmouseover=\"this.style.color='" + MouseoverColor + "'\"; onmouseout=\"this.style.color='" + MouseoutColor + "'\"";

//color of pipes
var pipe_color = "#000000";


//link names
var LinkOneName = " Home ";
var LinkTwoName = " History ";
var LinkThreeName = " Blueberry Farms ";
var LinkFourName = " Nursery ";
var LinkFiveName = " Price List ";
var LinkSixName = " Contact Us ";
var LinkSevenName = " Fresh Pack ";
var LinkEightName = " Processing ";
var LinkNineName = " Order Form ";

//link addresses
var LinkOneAddress = "index.html";
var LinkTwoAddress = "history.html";
var LinkThreeAddress = "farms.html";
var LinkFourAddress = "nursery.html";
var LinkFiveAddress = "price_list.html";
var LinkSixAddress = "contact.html";
var LinkSevenAddress = "freshpack.htm";
var LinkEightAddress = "processing.htm";
var LinkNineAddress = "orderpage.htm";


// END OF LINK/TEXT ATTRIBUTES ---------------------------------------->



// where the magic happens -------------------------------------------->
document.write ("<table width=\"" + NavWidth + "\" border=\"" + Border + "\" bgcolor=\"" + BGcolor + "\" align=\"" + EntireBarAlignment + "\">");
document.write ("<tr>");		
document.write ("<td align=\"" + BarTextAlignment + "\"><font face=\"" + DefaultFontFace + "\" size=\"" + DefaultFontSize + "\" color=\"" + DefaultFontColor + "\">   ");
document.write ("<b>");
document.write ("<!--link start--><a href=\"" + LinkOneAddress + "\"" + attrib + "\">" + LinkOneName + "</a><!--link end-->");
document.write ("<!-- pipe start --><font color=\"" + pipe_color + "\">|</font><!-- pipe end -->");
document.write ("<!--link start--><a href=\"" + LinkTwoAddress + "\" " + attrib + "\">" + LinkTwoName + "</a><!--link end-->");
document.write ("<!-- pipe start --><font color=\"" + pipe_color + "\">|</font> <!-- pipe end -->");
document.write ("<!--link start--><a href=\"" + LinkThreeAddress + "\" " + attrib + "\">" + LinkThreeName + "</a><!--link end-->");
document.write ("<!-- pipe start --><font color=\"" + pipe_color + "\">|</font><!-- pipe end -->");
document.write ("<!--link start--><a href=\"" + LinkFourAddress + "\" " + attrib + "\">" + LinkFourName + "</a><!--link end-->");
document.write ("<!-- pipe start --><font color=\"" + pipe_color + "\">|</font><!-- pipe end -->");
document.write ("<!--link start--><a href=\"" + LinkSevenAddress + "\" " + attrib + "\">" + LinkSevenName + "</a><!--link end-->");
document.write ("<!-- pipe start --><font color=\"" + pipe_color + "\">|</font><!-- pipe end -->");
document.write ("<!--link start--><a href=\"" + LinkEightAddress + "\" " + attrib + "\">" + LinkEightName + "</a><!--link end-->");
document.write ("<!-- pipe start --><font color=\"" + pipe_color + "\">|</font><!-- pipe end -->");
document.write ("<!--link start--><a href=\"" + LinkFiveAddress + "\" " + attrib + "\">" + LinkFiveName + "</a><!--link end-->");
document.write ("<!-- pipe start --><font color=\"" + pipe_color + "\">|</font><!-- pipe end -->");
document.write ("<!--link start--><a href=\"" + LinkNineAddress + "\" " + attrib + "\">" + LinkNineName + "</a><!--link end-->");
document.write ("<!-- pipe start --><font color=\"" + pipe_color + "\">|</font><!-- pipe end -->");
document.write ("<!--link start--><a href=\"" + LinkSixAddress + "\" " + attrib + "\">" + LinkSixName + "</a><!--link end-->");
document.write ("<!-- pipe start --><font color=\"" + pipe_color + "\">|</font><!-- pipe end -->");




document.write ("</b>");
document.write ("</font></td>	");
document.write ("</tr>");
document.write ("</table>");

// END -------------------------------------------------------------->