//
// Philip Bailey
// 22 January 2001
//
// Purpose:
//  This file contains common JavaScript that is used to insert common
//  features into all Intranet pages.
//
// Modifications:
//  Philip Bailey - 25 Sep 2003 - Web site update
//  Philip Bailey - 25 Sep 2003 - Drop-down menus added
//  Ken Fries     - 08 nov 2003 - Added NY solar Menu
//  Lindsay Kendall - 16 may 2005 - Added controller, wind turbines, and engr services menus, reordered menus
//  Lindsay Kendall - 15 june 2005 - took out links from icon menu, added New Product button
//  Lindsay Kendall - 31 july 2005 - added Halus Staff to menu
//  Lindsay Kendall - 21 june 2006 - removed "New Product Line Launched!"
//  Lindsay kendall - 15 Sep 2006 - turned off solar NY page and menu item
//  Lindsay Kendall - 26 Nov 2006 - turned off engr menu
//  Lindsay Kendall - 5 Jan 2007 - added Press Release button
//  Lindsay Kendall - 11 Aug 2010 - changed title of wind turbine menu
////////////////////////////////////////////////////////
//
// Variables to support drop-down menus
//
var font = 'Verdana, Arial, Helvetica, sans-serif';
var fsize = 10;
var fclr = '#FFFFFF';
var fhclr = '#ffcc66';// changed from lightgrey 11/05/04 kf
var bg = '#FF9900';
var bgh = '#66cc33';//#ff9900 changed from 11/05/04 kf
var height = 17;
var ypos = 136;

if (document.layers) ypos = 118; 
//
////////////////////////////////////////////////////////
// Build the menus
//
window.fw_menu_0 = new Menu("root",175,height,font,fsize,fclr,fhclr,bg,bgh);
fw_menu_0.addMenuItem("Wind Turbines 90 kW & Up","location='/products/windturbines.htm'");
fw_menu_0.addMenuItem("Solar Electricity","location='/products/solar.htm'");
//fw_menu_0.addMenuItem("   -    Solar NY","location='/products/ny/newyork.htm'");
fw_menu_0.addMenuItem("Wind Resource Assessment","location='/products/resource.htm'");
fw_menu_0.addMenuItem("Wind Turbine Controls","location='/products/controller.htm'");
//fw_menu_0.addMenuItem("Engineering Services","location='/products/engineering.htm'");

fw_menu_0.fontWeight="bold";
fw_menu_0.hideOnMouseOut=true;

window.fw_menu_1 = new Menu("root",160,height,font,fsize,fclr,fhclr,bg,bgh);
fw_menu_1.addMenuItem("Renewable Energy Basics","location='/renewableenergy/renewableenergy.htm'");
fw_menu_1.addMenuItem("Links","location='/renewableenergy/links.htm'");
fw_menu_1.fontWeight="bold";
fw_menu_1.hideOnMouseOut=true;

window.fw_menu_2 = new Menu("root",135,height,font,fsize,fclr,fhclr,bg,bgh);
fw_menu_2.addMenuItem("About Halus","location='/companyinformation/about/abouthalus.htm'");
fw_menu_2.addMenuItem("Company Directors","location='/companyinformation/about/directors.htm'");
fw_menu_2.addMenuItem("Contact Information","location='/companyinformation/about/contactus.htm'");
fw_menu_2.addMenuItem("Halus News","location='/companyinformation/news/news.htm'");
fw_menu_2.fontWeight="bold";
fw_menu_2.hideOnMouseOut=true;

fw_menu_0.writeMenus();

////////////////////////////////////////////////////////
//
// Start the main page layout table and insert the title row
//
document.writeln('<TABLE cellpadding="0" cellspacing="0" width="700">');
document.writeln('<TR><TD rowspan="3" class=halus><A href="/default.htm"><IMG src="/images/halus.gif" width="205" height="111"></A></TD>');

document.writeln('<TD class=SiteNav width=100% width=3 height=51 nowrap><A href="/companyinformation/news/news.htm">Press Releases</A>');
document.writeln('<IMG src="/images/spaceu.jpg">');
document.writeln('<IMG src="/images/spaceu.jpg">');
document.writeln('<IMG src="/images/spaceu.jpg">');
document.writeln('<A id=NavText>' + GetTodaysDate() + '</A>');

document.write('<IMG src="/images/spacea.jpg">'); //not necessary
document.write('<A href="/default.htm"><IMG id="Img0" src="/images/home.jpg" class=SiteNav width=28 height=29 onMouseOver="imageOver(this)" onMouseOut="imageOut(this)"></A>');
document.write('<A href="/companyinformation/about/contactus.htm"><IMG id="Img1" src="/images/contact.jpg" class=SiteNav width=28 height=29 onMouseOver="imageOver(this)" onMouseOut="imageOut(this)"></A>');
//document.write('<A href="/siteindex.htm"><IMG id="Img2" src="/images/siteindex.jpg" class=SiteNav width=28 height=29 onMouseOver="imageOver(this)" onMouseOut="imageOut(this)"></A>');	
//document.write('<A href="/renewableenergy/links.htm"><IMG id="Img3" src="/images/links.jpg" class=SiteNav width=28 height=29 onMouseOver="imageOver(this)" onMouseOut="imageOut(this)"></A>');	

document.writeln('</TD></TR><TR><TD class=Nav height=27 bgcolor=#FF9900 nowrap>');

document.write('<A href="/products/windturbines.htm"><IMG id="Img4" class=Nav2 src="/images/ps.jpg" width="160" onmouseover="window.FW_showMenu(window.fw_menu_0,263,ypos);" onmouseout="FW_startTimeout();"></A>');
document.write('<A href="/renewableenergy/renewableenergy.htm"><IMG id="Img5" class=Nav2 src="/images/re.jpg" width="215" onmouseover="window.FW_showMenu(window.fw_menu_1,425,ypos);" onmouseout="FW_startTimeout();"></A>');
document.write('<A href="/companyinformation/about/abouthalus.htm"><IMG id="Img6" class=Nav2  src="/images/ci.jpg" width="154" onmouseover="window.FW_showMenu(window.fw_menu_2,640,ypos);" onmouseout="FW_startTimeout();" style="border-width:0px 10px 0px 0px;border-color:#FF9900;border-style:solid;"></A>');
document.write('</TR><TR><TD colspan=2 width=3 height=5 class=UnderNav><IMG src="/images/spaceu.jpg"></TD></TR>');

document.writeln('<TR>');
//document.writeln('</TD><TD colspan=2 class=main>');

//document.writeln('<TD class=Date>21 Jan 2001</TD>');
//
// End of File

