var mmenu = new Array(7);
                               
left_logo="/images/left.gif";         //default images: left.gif menutop1.gif menutop2.gif    
menu_bar1="/images/menutop1.gif";     //New Year images: ny_left.gif ny1.gif ny2.gif          
menu_bar2="/images/menutop2.gif";     //Halloween images: left_pumpkin.gif,menutop1.hallo.gif,menutop2.hallo.gif
cachedef = new Image; cachedef.src ="/images/defmenuimg.gif";
mmenu[0]= new Image; mmenu[0].src="/images/forum.gif";   
mmenu[1]= new Image; mmenu[1].src="/images/home.gif";   
mmenu[2]= new Image; mmenu[2].src="/images/products.gif";   
mmenu[3]= new Image; mmenu[3].src="/images/services.gif";   
mmenu[4]= new Image; mmenu[4].src="/images/partners.gif";   
mmenu[5]= new Image; mmenu[5].src="/images/support.gif";   
mmenu[6]= new Image; mmenu[6].src="/images/news.gif";   
mmenu[7]= new Image; mmenu[7].src="/images/contact.gif";   

function mover(ref) { document.images.menu.src = ref; }
function mout()  { document.images.menu.src = cachedef.src; }

function topmenu() {
HTML ='<table width=100% border="0" cellpadding="0" cellspacing="0">';

HTML+='		<td valign="top" rowspan="3" width="100%" height="77" background="/images/tile1.gif">';
HTML+='			<a name="top"><img src='+left_logo+' width="221" height="77" alt=""></a></td>';
HTML+='		<td width="292" align="right" height="56" background='+menu_bar1+' alt="">';
HTML+='			<IMG SRC="/images/spacer.gif" WIDTH="292" HEIGHT="56" border="0" alt=""></td>';
HTML+='		<td width="183" align="right" valign="middle" height="56" background='+menu_bar2+'></td>';
HTML+='		<td width="66" align="right" height="56" background="/images/menutop3.gif">';
HTML+='</td>';
HTML+='	</form></tr>';
HTML+='	<t>';
HTML+='		<td valign="top" width="541" colspan="3" align="right" height="20" background="/images/menusm1.gif">';
HTML+='			<IMG NAME="menu" SRC="/images/spacer.gif" WIDTH="541" HEIGHT="20" BORDER="0" USEMAP="#menusm_Map" alt=""></td>';
HTML+='	</tr>';
HTML+='	<tr>';
HTML+='		<td width="292" colspan="3" align="right" height="1">';
HTML+='			<IMG SRC="/images/spacer.gif" WIDTH="541" HEIGHT="1" border="0" alt=""></td>';
HTML+='	</tr>';
HTML+='</table>';
MAP='<MAP NAME="menusm_Map">';
MAP+='	<AREA SHAPE="rect" ALT="Forum" COORDS="483,0,541,18" HREF="http://www.forum.psoft.net/" onMouseOver="mover(\'/images/forum.gif\')" onMouseOut="mout()">';
MAP+='	<AREA SHAPE="rect" ALT="Contact" COORDS="408,0,482,18" HREF="/contact.html" onMouseOver="mover(\'/images/contact.gif\')" onMouseOut="mout()">';
MAP+='	<AREA SHAPE="rect" ALT="News" COORDS="355,0,407,18" HREF="/news.html" onMouseOver="mover(\'/images/news.gif\')" onMouseOut="mout()">';
MAP+='	<AREA SHAPE="rect" ALT="Support" COORDS="288,0,354,18" HREF="/support.html" onMouseOver="mover(\'/images/support.gif\')" onMouseOut="mout()">';
MAP+='	<AREA SHAPE="rect" ALT="Partners" COORDS="215,0,287,18" HREF="/partners.html" onMouseOver="mover(\'/images/partners.gif\')" onMouseOut="mout()">';
MAP+='	<AREA SHAPE="rect" ALT="Services" COORDS="145,0,214,18" HREF="/services.html" onMouseOver="mover(\'/images/services.gif\')" onMouseOut="mout()">';
MAP+='	<AREA SHAPE="rect" ALT="Products" COORDS="67,0,144,18" HREF="/products.html" onMouseOver="mover(\'/images/products.gif\')" onMouseOut="mout()">';
MAP+='	<AREA SHAPE="rect" ALT="Home" COORDS="8,0,66,18" HREF="/index.html" onMouseOver="mover(\'/images/home.gif\')" onMouseOut="mout()">';
MAP+='</MAP>';
document.write(HTML);document.write(MAP);
}
