function getService (page) {

	var aServices = new Array();
	
	//reservation
	aServices['ebillet'] = 'reservation';
	aServices['billetadomicile'] = 'reservation';
	aServices['optionetreservation'] = 'reservation';
	aServices['choixdelaplace'] = 'reservation';
	aServices['calendrierdesprix'] = 'reservation';
	
	// accompagnement
	aServices['jeunevoyageurservice'] = 'accompagnement';
	aServices['servicedomiciletrain'] = 'accompagnement';
	aServices['accesplus'] = 'accompagnement';
	aServices['infoporteaporte'] = 'accompagnement';
	
	// vieabord
	aServices['baretboutiqueabord'] = 'vieabord';
	aServices['espacetgvfamily'] = 'vieabord';
	aServices['espaceetconfortabord'] = 'vieabord';
	
	// voiture
	aServices['autotrain'] = 'voiture';
	aServices['tgvpluslocationdevoiture'] = 'voiture';
	
	// bagages
	aServices['bagagesadomicile'] = 'bagages';
	aServices['bagagesengare'] = 'bagages';
	aServices['tgvplusvelo'] = 'bagages';
	
	// trainplus
	aServices['trainplushotel'] = 'trainplus';
	aServices['tgvair'] = 'trainplus';
	aServices['tgvplusski'] = 'trainplus';
	aServices['tgvplusplage'] = 'trainplus';
	
	// pro
	aServices['facilitedechangeetderemboursement'] = 'pro';
	aServices['accueildedie'] = 'pro';
	aServices['serviceprodeporteaporte'] = 'pro';
	aServices['propremiere'] = 'pro';
	
	var service = aServices[page];
	return service;
}