
<!--START COMPONENT:464-->
function translateDDL(DDLobj,trArray){
	//console.log("translateDDL function "+$(DDLobj).find("option").length);

	for(var i = 1;i < $(DDLobj).find("option").length; i++) {
		if(countryTranslate[$(DDLobj).find("option").eq(i).text()]) {
			$(DDLobj).find("option").eq(i).html(countryTranslate[$(DDLobj).find("option").eq(i).text()]);			
		}
	}
	
	for(var j=1; j < $(DDLobj).find("option").length; j++) {
		if(cityTranslate[$(DDLobj).find("option").eq(j).text()]) {
			$(DDLobj).find("option").eq(j).html(cityTranslate[$(DDLobj).find("option").eq(j).text()]);			
		}
	}

	for(var x=1; x < $(DDLobj).find("option").length; x++) {
		if(brandTranslate[$(DDLobj).find("option").eq(x).text()]) {
			$(DDLobj).find("option").eq(x).html(brandTranslate[$(DDLobj).find("option").eq(x).text()]);			
		}
	} 

}
var countryTranslate=new Array();countryTranslate["Germany"]="Allemagne";countryTranslate["Australia"]="Australie";countryTranslate["Bahrain"]="Bahrain";countryTranslate["Belgium"]="Belgique";countryTranslate["China"]="Chine";countryTranslate["Spain"]="Espagne";countryTranslate["France"]="France";countryTranslate["Georgia"]="Georgie";countryTranslate["India"]="Inde";countryTranslate["Indonesia"]="Indonésie";countryTranslate["Japan"]="Japon";countryTranslate["Kazakhstan"]="Kazakhstan";countryTranslate["Korea, Republic Of"]="Korea, South";countryTranslate["Malaysia"]="Malaysia";countryTranslate["Philippines"]="Philippines";countryTranslate["Qatar"]="Qatar";countryTranslate["United Kingdom"]="Royaume-Uni";countryTranslate["Russian Federation"]="Russia";countryTranslate["Singapore"]="Singapour";countryTranslate["Thailand"]="Thaïlande";countryTranslate["United Arab Emirates"]="United Arab Emirates";countryTranslate["Vietnam"]="Vietnam";
<!--END COMPONENT:464-->
