/* step 3.a: Set the array of icons
     for each image in the navigator bar, replace the corresponding
     image source files and the corresponding link file/url
*/  

function initNav() { 
  var numOfBars= 6;
  var  topHtml='';
  var  botHtml=' ';
 topHtml += '<table border="0" cellspacing="0" cellpadding="0">';
 topHtml += '<tr><td width="627" height="1" colspan="4" align="left" bgcolor="#1B594A"></td>';
 topHtml += '</tr><tr>';
 topHtml +='<td width="169" align="left" valign="top">';

  topHtml += '<table width="169"  border="0" cellspacing="0" cellpadding="0" valign="top">' ;   
  topHtml += '<tr><td width="169" height="52" align="left" valign="top"><img src="/conferences/iseeqs/images/hnav_top.gif" width="169" height="52"></td></tr>' ;
  
  botHtml += '<tr><td width="169" height="19" align="left" valign="top"><img src="/conferences/iseeqs/images/gr_bc.gif" width="169" height="19"></td>' ;
  botHtml += '</tr><tr>';
botHtml += '<td width="169" height="195" align="left" valign="top"><img src="/conferences/iseeqs/images/hnav_bot.jpg" width="169" height="195"></td>';
  botHtml += '</tr></table>';
  botHtml += '</td>';	 
	  
 

 theNav= new NavClass(numOfBars, topHtml, botHtml);  //the parameter - number of the bars in the navagation bar 
  setBarArray();             //fill barAray with images          //fill barAray with images
}
 

 
