/* Variables Menu Langues */

var base_path_carte = base_path + 'carte/';
var tooltip_img_left = base_path_carte + 'tooltip_fleche.gif';
var tooltip_img_right = base_path_carte + 'tooltip_fleche_b.gif';

/* Gestion des cartes et zones 
Une section par carte avec les proprietes suivantes:
{
  caption  : indication du nom de carte (non affiché)
  fond     : image de fond de la carte incluant les boutons d'accès
  btn      : tableau avec les coordonnees (x, y) de positionnement des boutons d'accès au continents (zone = index a base zero du continent dans le tableau general)
  flag     : tableau des drapeaux dans le continent avec les coordonnees x, y, l'image et le ou les liens vers la boutique/langue
}
*/
var zones = [
	{
		caption: 'North America'
		,fond: 'fond_00.png'
		,btn: [
			{ x: 0, y: 230, zone: 2 },
			{ x: 0, y: 420, zone: 5 },
			{ x: 290, y: 420, zone: 3 },
			{ x: 580, y: 420, zone: 4 },
			{ x: 580, y: 230, zone: 1 }
		]
	}
	,{
		caption: 'Europa'
		,fond: 'fond_01_tempo.png'
		,flag:[
			{ x: 187, y: 277, img: 'zone_1_flag_0.png', 
				html:[
					'<a href="' + root_path + '?scenario.xcm=FRFR_SIS01_SCN&shop=FRFR_SIS01&language=fr&country=fr" title="" target="_top">France</a>'
				]
			}
			,{ x: 216, y: 196, img: 'zone_1_flag_1.png',
				html:[
					'<a href="' + root_path + '?scenario.xcm=NLNL_01_SCN&shop=NLNL_01&language=nl&country=nl" title="" target="_top">Dutchland</a>'
				]
			}
			,{ x: 205, y: 219, img: 'zone_1_flag_2.png',
				html:[
					'<a href="' + root_path + '?scenario.xcm=BEFR_01_SCN&shop=BEFR_01&language=fr&country=be" title="" target="_top">Belgique</a>',
					'<a href="' + root_path + '?scenario.xcm=BENL_01_SCN&shop=BENL_01&language=nl&country=be" title="" target="_top">Belgi&euml;</a>'
				]
			}
			,{ x: 71, y: 175, img: 'zone_1_flag_3.png',
				html:[
					'<a href="' + root_path + '?scenario.xcm=IEEN_01_SCN&shop=IEEN_01&language=en&country=ie" title="" target="_top">Ireland</a>'
				]
			}
			,{ x: 140, y: 188, img: 'zone_1_flag_5.png',
				html:[
					'<a href="' + root_path + '?scenario.xcm=GBEN_01_SCN&shop=GBEN_01&language=en&country=gb" title="" target="_top">Great Britain</a>'
				]
			}
			,{ x: 269, y: 202, img: 'zone_1_flag_7.png',
				html:[
					'<a href="' + root_path + '?scenario.xcm=DEDE_01_SCN&shop=DEDE_01&language=de&country=de" title="" target="_top">Germany</a>'
				]
			}/*
			,{ x: 246, y: 284, img: 'zone_1_flag_8.png',
				html:[
					'<a href="' + root_path + '?scenario.xcm=CHFR_01_SCN&shop=CHFR_01&language=fr&country=ch" title="" target="_top">Suisse</a>',
					'<a href="' + root_path + '?scenario.xcm=CHDE_01_SCN&shop=CHDE_01&language=de&country=ch" title="" target="_top">Schweiz</a>',
					'<a href="' + root_path + '?scenario.xcm=CHIT_01_SCN&shop=CHIT_01&language=it&country=ch" title="" target="_top">Svizzera</a>'
				]
			}
			,{ x: 323, y: 270, img: 'zone_1_flag_9.png',
				html:[
					'<a href="' + root_path + '?scenario.xcm=ATDE_01_SCN&shop=ATDE_01&language=de&country=at" title="" target="_top">Austria</a>'
				]
			}*/
			,{ x: 294, y: 344, img: 'zone_1_flag_10.png',
				html:[
					'<a href="' + root_path + '?scenario.xcm=ITIT_01_SCN&shop=ITIT_01&language=it&country=it" title="" target="_top">Italia</a>'
				]
			}
			,{ x: 71, y: 373, img: 'zone_1_flag_11.png',
				html:[
					'<a href="' + root_path + '?scenario.xcm=PTPT_01_SCN&shop=PTPT_01&language=pt&country=pt" title="" target="_top">Portugal</a>'
				]
			}
			,{ x: 100, y: 407, img: 'zone_1_flag_12.png',
				html:[
					'<a href="' + root_path + '?scenario.xcm=ESES_01_SCN&shop=ESES_01&language=es&country=es" title="" target="_top">Spain</a>'
				]
			}
		]
	}
	,{
		caption: 'Russia / Asia'
		,fond: 'fond_02.png'
		,btn: [
			{ x: 0, y: 230, zone: 1 },
			{ x: 0, y: 420, zone: 4 },
			{ x: 290, y: 420, zone: 5 },
			{ x: 580, y: 420, zone: 3 },
			{ x: 580, y: 230, zone: 0 }
		]
	}
	,{
		caption: 'South America'
		,fond: 'fond_03.png'
		,btn: [
			{ x: 0, y: 0, zone: 2  },
			{ x: 290, y: 0, zone: 0 },
			{ x: 580, y: 0, zone: 1 },
			{ x: 0, y: 230, zone: 5 },
			{ x: 580, y: 230, zone: 4 }
		]
	}
	,{
		caption: 'Africa'
		,fond: 'fond_04.png'
		,btn: [
			{ x: 0, y: 0, zone: 0 },
			{ x: 290, y: 0, zone: 1 },
			{ x: 580, y: 0, zone: 2 },
			{ x: 0, y: 230, zone: 3 },
			{ x: 580, y: 230, zone: 5 }
		]
	}
	,{
		caption: 'Oceania'
		,fond: 'fond_05.png'
		,btn: [
			{ x: 0, y: 0, zone: 1 },
			{ x: 290, y: 0, zone: 2 },
			{ x: 580, y: 0, zone: 0 },
			{ x: 0, y: 230, zone: 4	},
			{ x: 580, y: 230, zone: 3 }
		]
	}
];

