//Copyright 2002 by A. Fricke - http://www.TheWordCompany.de - all rights reserved
//---------------------------------------------------------------------------menu intercultures

function icMenu(myLang){
	
	switch (myLang) {
	case 0 : 
		linkPath = ''
		imgPath = '../'
		break;
	case 1 : 
		linkPath = '../'
		imgPath = '../../'
		break; 
	case 2 :
		linkPath = '../../'
		imgPath = '../../../'
	break; 
	case 3 :
		linkPath = '../../../'
		imgPath = '../../../../'
		break;
	default :
		linkPath = '../'
		imgPath = '../../'
	}
	
	with(document){
		write('<table width="56" border="0" cellspacing="0" cellpadding="0">');
		//profile
		write('<tr><td height="82" align="left" valign="top"><div align="center" class="nv">');
		write('<a href="'+linkPath+'network/intro.htm"><img name="intercultures: info" src="'+imgPath+'media/ic_btn_profile.gif" width="56" height="56" border="0"><br>Profil</a></div></td></tr>');
		//current
		//write('<tr><td height="82" align="left" valign="top"><div align="center" class="nv">');
		//write('<a href="'+linkPath+'current/index.php"><img name="intercultures: info" src="'+imgPath+'media/ic_btn_current.gif" width="56" height="56" border="0"><br>Aktuelles</a></div></td></tr>');
		//open trainings
		write('<tr><td height="82" align="left" valign="top"><div align="center" class="nv">');
		write('<a href="'+linkPath+'open_trainings.php"><img name="intercultures: open trainings" src="'+imgPath+'media/ic_btn_otrain.gif" width="56" height="56" border="0"><br><span style="line-height:11px;">Offene Trainings</span></a></div></td></tr>');
		//cultures
		write('<tr><td height="82" align="left" valign="top"><div align="center" class="nv">');
		write('<a href="'+linkPath+'culture/index.htm"><img name="intercultures: cultures" src="'+imgPath+'media/ic_btn_cultures.gif" width="56" height="56" border="0"><br>Kulturen</a></div></td></tr>');
		//services
		write('<tr><td height="82" align="left" valign="top"><div align="center" class="nv">');
		write('<a href="'+linkPath+'service/index.htm"><img name="intercultures: services" src="'+imgPath+'media/ic_btn_services.gif" width="56" height="56" border="0"><br>Dienste</a></div></td></tr>');
		//networks
		write('<tr><td height="82" align="left" valign="top"><div align="center" class="nv">');
		write('<a href="'+linkPath+'network/index.htm"><img name="intercultures: networks" src="'+imgPath+'media/ic_btn_networks.gif" width="56" height="56" border="0"><br>Netzwerk</a></div></td></tr>');
		//login portal
		write('<tr><td height="82" align="left" valign="top"><div align="center" class="nv">');
		write('<a href="'+linkPath+'portal.php"><img name="intercultures: portal" src="'+imgPath+'media/ic_btn_portal.gif" width="56" height="56" border="0"><br>Portal</a></div></td></tr>');
		//contact
		write('<tr><td height="82" align="left" valign="top"><div align="center" class="nv">');
		write('<a href="'+linkPath+'network/contact.htm"><img name="intercultures: info" src="'+imgPath+'media/ic_btn_contact.gif" width="56" height="56" border="0"><br><span style="line-height:11px;">Kontakt/<br>Impressum</span></a></div></td></tr>');
		write('</table>');
	}
}