/*
  This javascript generates the sibebar.
  The highligted menu item is determined by global variable page_number
 */

var page = new Array();

page[0] = 'href="index.html">Home';
page[1] = 'href="about.html">About MIC';
page[2] = 'href="product.html">Product';
page[3] = 'href="support.html">Support';
page[4] = 'href="partnership.html">Partnership';
page[5] = 'href="career.html">Career';
page[6] = 'href="contact.html">Contact';

document.writeln('<h1><img style="margin: 2px; float: left; width: 32px; height: 28px;"');
document.writeln(' alt="" src="img/atom.gif">MIC Group</h1>');
document.writeln('<h2>Your Best Partner in Semiconductor Supplies</h2>');

document.writeln('<div id="menu">');
for( i=0; i<page.length; i++ ) {
 document.write('<a ');
 if( i == page_number  ) {
  document.write('class="active" ');
 }
 document.writeln( page[i] + '</a>');
}
document.writeln('</div>');

document.writeln('<h3>Authorized Distributor of Spansion &amp; Fujitsu<br></h3>');
document.writeln('<p>v1.0 (Nov 29, 2006)</p>');
document.writeln('<img style="width: 100px; height: 45px;" alt="" src="img/spansion.jpg">');
document.writeln('<img style="width: 64px; height: 45px;" alt="" src="img/fujitsu.jpg">');
