
var arProducts = new Array(

  new Array('Belgard Pavers',
    new Array(
      new Array('Photo Gallery','products.htm')
/*
      new Array('Photo Gallery','belgard_photos.htm')
      new Array('Shapes & Sizes','belgard_shapes1.htm'),
      new Array('Colors Collection','belgard_colors_dublin.htm'),
      new Array('Patterns','belgard_patterns.htm'),
      new Array('Catalogs Library','belgard_catalogs.htm'),
      new Array('Technical Notes','belgard_technical.htm'),
      new Array('Sales Tools','belgard_sales.htm'),
      new Array('Belgard Dealers','belgard_dealers.htm')
*/
    )
  ),

  new Array('Anchor Retaining Walls',
    new Array(
      new Array('Anchor Retaining Walls','products.htm')
//      new Array('Anchor Retaining Walls','anchor_walls.htm')
    )
  ),

  new Array('Architectural Block',
    new Array(
      new Array('Photo Gallery','super_gallery.htm'),
      new Array('Shapes & Sizes','super_shapes.htm'),
      new Array('Colors Collection','super_colors.htm'),
      new Array('Technical Notes','super_technical.htm'),
      new Array('Fire Rating Chart','super_firerating.htm')
    )
  ),

  new Array('PRAIRIE stone',
    new Array(
      new Array('Prairie stone','prairie.htm')
    )
  ),

  new Array('Dufferin Stone',
    new Array(
      new Array('Overview','dufferin_overview.htm'),
      new Array('Photo Gallery','dufferin_photos.htm'),
      new Array('Colors Collection','dufferin_colors.htm'),
      new Array('Technical Notes','dufferin_technical.htm'),
      new Array('Digital Catalog','dufferin_catalogs.htm'),
	  new Array('Dufferin Stone Dealers','dufferin_dealers.htm')
    )
  ),
   
  new Array('Harvard Brik<sup>TM</sup>',
    new Array(
      new Array('Harvard Brik<sup>TM</sup>','harvard.htm')
    )
  ),

  new Array('Quik-Brik',
    new Array(
      new Array('Photo Gallery','quik_photos.htm'),
      new Array('Benefits','quik_benefits.htm'),
      new Array('Colors Collection','quik_colors.htm'),
      new Array('Technical Notes','quik_technical.htm'),
      new Array('FAQ`s','quik_faq.htm')
    )
  ),
		
  new Array('Trenwyth Products',
    new Array(
      new Array('Showroom','tren_showroom.htm')
    )
  ),

  new Array('DiffusorBlox&reg;',
    new Array(
      new Array('DiffusorBlox&reg;','diffusorblox.htm')
    )
  ),

  new Array('NRG&reg; Insulated Block',
    new Array(
      new Array('Overview','nrg.htm'),
      new Array('Photo Gallery','nrg_photos.htm'),
      new Array('Specifications','nrg_specifications.htm'),
      new Array('Installation','nrg_installation.htm'),
      new Array('FAQ','nrg_faq.htm')
    )
  )

)

function menu_products() {
  var i, j;
  for (i=0;i<arProducts.length;i++) {
		  document.write('<tr height="12">');
				document.write('<td width="12"><img src="images/arrow1.gif" width="11" height="10" border="0" alt=""></td>');
				document.write('<td width="142"><a href="'+arProducts[i][1][0][1]+'" class="'+((company==i)?'menucompany1':'menucompany')+'">'+arProducts[i][0]+'</a></td>');
		  document.write('</tr>');
		  document.write('<tr><td colSpan=2><img src="images/menu_delimiter.gif" width="154" height="1"></td></tr>');
				if ((company==i) && (arProducts[i][1].length>1)) {
  		  document.write('<tr><td colSpan=2><table width="100%" border="0" cellspacing="0" cellpadding="0">');
      for (j=0;j<arProducts[i][1].length;j++) {
        document.write('<tr>');
        document.write('<td width=17><img src="images/space.gif" width="17" height="1" border="0" alt=""></td>');
        document.write('<td width=8><img src="images/arrow2.gif" width="3" height="5" border="0" alt=""></td>');
        document.write('<td width="*"><a href="'+arProducts[i][1][j][1]+'" class="'+((index==j)?'menuproduct1':'menuproduct')+'">'+arProducts[i][1][j][0]+'</a></td>');
		    		document.write('</tr>');
      }
		    document.write('</td></tr></table></td></tr>');
				}
		}
}
