function banner(which)
{
    var LIMIT = 15;
    var sections = new Array(LIMIT);

    for (var i=0; i < sections.length; i++)
    {
	sections[i] = 'bannerthere';
    }
    if (which >= 0 && which <= LIMIT)
	sections[which] = 'bannerhere';

    document.writeln('<table cellpadding=1 cellspacing=0 border=0 width="100%" align=center>');
    document.writeln('<tr>');
    document.writeln('<td align=center width="40%" rowspan=4><a href="/index.html"><img src="/images/gbc_logo.gif" border=0></a></td>');
    document.writeln('<td><table cellpadding=0 cellspacing=0 border=0 width="100%">');
    document.writeln('<tr valign=middle>');
    document.writeln('<td align=center width="25%"><a class=' + sections[1] + ' href="/new/news.html">News</a></td>');
    document.writeln('<td align=center width="25%"><a class=' + sections[2] + ' href="/new/styles.html">Styles</a></td>');
    document.writeln('<td align=center width="25%"><a class=' + sections[3] + ' href="/new/brands.html">Brands</a></td>');
    document.writeln('<td align=center><a class=' + sections[4] + ' href="/new/rentals.html">Rentals</a></td>');
    document.writeln('</tr></table></td><tr valign=middle>');
    document.writeln('<td><table cellpadding=0 cellspacing=0 border=0 width="100%">');
    document.writeln('<tr>');
    document.writeln('<td align=center width="25%"><a class=' + sections[5] + ' href="/new/road.html">Road</a></td>');
    document.writeln('<td align=center width="25%"><a class=' + sections[6] + ' href="/new/triathlon.html">Triathlon</a></td>');
    document.writeln('<td align=center width="25%"><a class=' + sections[7] + ' href="/new/tandems.html">Tandems</a></td>');
    document.writeln('<td align=center width="25%"><a class=' + sections[8] + ' href="/new/mountain.html">Mountain</a></td>');
	document.writeln('<td align=center width="25%"><a class=' + sections[9] + ' href="/new/accessories.html">Accessories</a></td>');
    document.writeln('</tr></table></td><tr valign=middle>');
    document.writeln('<td><table cellpadding=0 cellspacing=0 border=0 width="100%">');
    document.writeln('<tr>');
    document.writeln('<td width="7%"><div class=text>&nbsp;</div></td>');
    document.writeln('<td align=center width="33%"><a class=' + sections[12] + ' href="/new/links.html">Links</a></td>');
    document.writeln('<td align=center width="33%"><a class=' + sections[13] + ' href="/new/Custom Fit and Design.html">Custom Fit and Design</a></td>');
   document.writeln('<td align=center width="33%"><a class=' + sections[13] + ' href="/new/employees.html">Employees</a></td>');
    document.writeln('</tr></table></td><tr valign=middle>');
    document.writeln('<td><table cellpadding=0 cellspacing=0 border=0 width="100%">');
    document.writeln('<tr>');
    document.writeln('<td width="7%"><div class=text>&nbsp;</div></td>');
    document.writeln('<td align=center width="33%"><a class=' + sections[9] + ' href="/new/repairs.html">Repairs & Service</a></td>');
    document.writeln('<td align=center width="33%"><a class=' + sections[11] + ' href="/new/map.html">Map/Directions</a></td>');
    document.writeln('<td align=center"><a class=' + sections[10] + ' href="/new/contact.html">Contact Us</a></td>');
    document.writeln('</tr></table></td><tr valign=middle>');
    document.writeln('<td><table cellpadding=0 cellspacing=0 border=0 width="100%">');
    document.writeln('<tr>');
    document.writeln('<td align=center width="100%">&nbsp;</td>');
    document.writeln('</tr></table></td></tr></table>');
}
