function loadLanguageSelection(){
	//urlPrefix='http://www.ehotel.de';
	var splitLang=new Array('de|http://de.ehotel.com/hotel/',
						'en|http://uk.ehotel.com/hotel/',
						'es|http://es.ehotel.com/hotel/',
						'fr|http://fr.ehotel.com/hotel/',
						'it|http://it.ehotel.com/hotel/',
						'pl|http://pl.ehotel.com/hotel/',
						'ru|http://ru.ehotel.com/hotel/',
						'bg|http://bg.ehotel.com/hotel/',
						'nl|http://nl.ehotel.com/hotel/',
						'no|http://no.ehotel.com/hotel/',
						'pt|http://pt.ehotel.com/hotel/',
						'zh|http://cn.ehotel.com/hotel/');
	document.write('<div id="LanguageSelector">'); 
	for (var i = 0; i < splitLang.length; ++i){
		currentLang = splitLang[i]; 
		lang =currentLang.split('|')[0];
		url=currentLang.split('|')[1];
		//console.log("Lang ["+lang+"] URL ["+url+"]");
		document.write('<a href="'+url+'"><div class="flag flag-'+lang+'"></div></a>');
		}
	document.write('</div>');
}
