/**********************************************************************************
* navi_defs_de.js
* enthält die Definition des Menues (sprachspezifisch)
*
* Menue-Daten eintragen und diese Datei mit
* <script src="navi_defs_de.js" type="text/javascript"></script>
* an die Stelle des Menues einbinden!
* 
* (c)2008 Internet Service Laidler, Friedrichshafen
**********************************************************************************/

top_text = new Array;
top_href = new Array;

sub_text = new Array;		// zweidimensional
for (i=0; i<8; i++)
	sub_text[i] = new Array;

sub_href = new Array;		// zweidimensional
for (i=0; i<8; i++)
	sub_href[i] = new Array;

// =================================== Menue-Daten hier eintragen =====================================
//								(Schrägstriche / mit Backslash escapen: \/ )
//							(fuer ein Menueitem ohne link muss # eingetragen werden!)

//Variablen für den Rolladen-Effekt
roll = true;
rollTime = 0.05;	// Punkt statt Komma!

// häufige Pfade (verwenden für href-Einträge, z.B.: top_href[n] = href_Pathn + 'datei.htm';)
//href_Path1   	= 'file:\/\/\/C:\/Dokumente%20und%20Einstellungen\/KKH\/Eigene%20Dateien\/m&amp;h\/m_h\/web-content\/2009\/';

// Pfad zu den Pfeil-Bildern (Variable nicht loeschen!)
//img_Path 		= 'm&amp;h%20-%20Prezison%20am%20Werkst&uuml;ck-Dateien\/';	 
img_Path 		= ''; 

targets = new Array;		// zweidimensional
targets[0] = new Array( "4", "0", "_blank");
// targets (nur angeben, wenn nötig: z.B. '_blank' oder anderer frame) (default ist '_self')
// z.B.	target "_blank" für subMenue 0 in topMenue 1:															
//targets[0] = new Array( "1", "0", "_blank");		
// oder z.B.	target "_blank" für topMenue 0:															
//targets[1] = new Array( "0", "", "_blank");															
	
// Texte und Links
top_text[0] 	= 'Accueil';
top_href[0] 	= 'index.html';

top_text[1] 	= 'Produits';
top_href[1] 	= '#';
sub_text[1][0] 	= 'Palpeurs infrarouges';
sub_href[1][0] 	= 'infra0fr.html';
sub_text[1][1] 	= 'Récepteurs infrarouges';
sub_href[1][1] 	= 'infra2fr.html';
sub_text[1][2] 	= 'Palpeurs radio';
sub_href[1][2] 	= 'funk0fr.html';
sub_text[1][3] 	= 'Récepteurs radio';
sub_href[1][3] 	= 'funk2fr.html';
sub_text[1][4] 	= 'Palpeur de température';
sub_href[1][4] 	= 'temp2fr.html';
sub_text[1][5] 	= 'Palpeur de production';
sub_href[1][5] 	= '4100fr.html';
sub_text[1][6] 	= 'Palpeur-outil Laser';
sub_href[1][6] 	= '3560fr.html';
sub_text[1][7] 	= 'Palpeurs-outils';
sub_href[1][7] 	= 'tool0fr.html';
sub_text[1][8] 	= 'Logiciel de mesure';
sub_href[1][8] 	= 'soft0fr.html';
sub_text[1][9] 	= ' ';
sub_href[1][9] 	= '#';

top_text[2] 	= 'Société';
top_href[2] 	= '#';
sub_text[2][0] 	= 'Biographie';
sub_href[2][0] 	= 'Biographie.html';
sub_text[2][1] 	= 'Philosophie';
sub_href[2][1] 	= 'Philosophie.html';
sub_text[2][2] 	= 'Certifications';
sub_href[2][2] 	= 'u_zert0.html';
sub_text[2][3] 	= ' ';
sub_href[2][3] 	= '#';

top_text[3] 	= 'Salons 2010';
top_href[3] 	= 'messe.html';

top_text[4] 	= 'Service Online';
top_href[4] 	= '#';
sub_text[4][0] 	= 'Téléchargements';
sub_href[4][0] 	= 'os0.html';
sub_text[4][1] 	= 'Demande de réparation';
sub_href[4][1] 	= 'os1.html';
sub_text[4][2] 	= 'Pręt de palpeur';
sub_href[4][2] 	= 'os2.html';
sub_text[4][3] 	= '3D Form Inspect Support';
sub_href[4][3] 	= 'os5.html';
sub_text[4][4] 	= ' ';
sub_href[4][4] 	= '#';

top_text[5] 	= 'Contact';
top_href[5] 	= '#';
sub_text[5][0] 	= 'Société';
sub_href[5][0] 	= 'kon0.html';
sub_text[5][1] 	= 'L´Europe';
sub_href[5][1] 	= 'kon1.html';
sub_text[5][2] 	= 'L´Amérique';
sub_href[5][2] 	= 'kon3.html';
sub_text[5][3] 	= 'L´Asie';
sub_href[5][3] 	= 'kon4.html';
sub_text[5][4] 	= ' ';
sub_href[5][4] 	= '#';

top_text[6] 	= 'Job/Carričre';
top_href[6] 	= 'job.html';

top_text[7] 	= 'Mentions légales';
top_href[7] 	= 'imp.html';

// =================================== Ende ==========================================================

// die 3 Grafiken der Top-Menüs
var closedImg=new Image();
closedImg.src = img_Path + 'arrow_r.gif';   // erste Grafik

var openedImg=new Image();			
openedImg.src = img_Path + 'arrow_d.gif';	//zweite Grafik für den Wechsel

var emptyImg=new Image();			
emptyImg.src = img_Path + 'leer.gif';		// dummy-Grafik

writeMenu();	// nicht löschen!
initNavi();		// nicht löschen!
