window.addEvent('domready',function(){
	//toggle mittig setzen
	if($('toggle')){
		$('toggle').setStyle('margin-top',parseInt($('visible-toggle').getStyle('height').substring(-2))/2-25);
		$('toggle').addEvent('mouseover',function(){
			
			if($('hag_weltweit').getStyle('width')!="6px"){
				$('toggle').setStyle('background-image','url("/fileadmin/hummel/templates/images/layout/toggle.off.hover.png")');
			}else{
				$('toggle').setStyle('background-image','url("/fileadmin/hummel/templates/images/layout/toggle.on.hover.png")');
			}
		});
		$('toggle').addEvent('mouseout',function(){
			
			if($('hag_weltweit').getStyle('width')!="6px"){
				$('toggle').setStyle('background-image','url("/fileadmin/hummel/templates/images/layout/toggle.off.png")');
			}else{
				$('toggle').setStyle('background-image','url("/fileadmin/hummel/templates/images/layout/toggle.on.png")');
			}
		});
		$('toggle').addEvent('click',function(){
			var width = 265;
			if($('hag_weltweit').getStyle('width')!="6px"){
				$('toggle').setStyle('background-image','url("/fileadmin/hummel/templates/images/layout/toggle.off.png")');
				//$$('div.list').morph({width:0,opacity:0});
				
				if($('item-collection')){
					$('item-collection').setStyle('display','none');
					$$('div.country').setStyle('display','none');
				}else{
					$$('div.list').setStyle('display','none');
				}
				//$$('div.list').setStyle('width','0');
				//$$('div.list').setStyle('opacity','0');
				//$('hag_weltweit').morph({width:6});
				$('hag_weltweit').setStyle('width','6px');
			}else{
				$('toggle').setStyle('background-image','url("/fileadmin/hummel/templates/images/layout/toggle.on.png")');
				
				//$('hag_weltweit').morph({width:width});
				$('hag_weltweit').setStyle('width',width);
				//$$('div.list').morph({width:232,opacity:1.00});
				//$$('div.list').setStyle('width',232);
				//$$('div.list').setStyle('opacity',1.00);
				if($('item-collection')){
					$('item-collection').setStyle('display','block');
					$$('div.country').setStyle('display','block');
				}else{
					$$('div.list').setStyle('display','block');
				}
			}
		});
	};
	transformTitleTag();
	land();
	
	
	marginEuropa();
	
});

function land() {
	var countrys = $$('map area');
	//alert(countrys[0].title);
	for ( var i = 0; i < countrys.length; i++) {
		countrys[i].addEvent('mouseover',function(){
			$('country').setProperty('text',this.get('alt'));
			
		});
		countrys[i].addEvent('mouseout',function(){
			$('country').setProperty('text','');
		});
	}
	
}

function transformTitleTag(){
	// Nordamerika,Europa,S�damerika,Afrika,Asien,Pazifik
	var land_namen_en = new Array();
		land_namen_en['belgien'] = 'Belgium';
		land_namen_en['bosnien'] = 'Bosnia and Herzegovina';
		land_namen_en['bulgarien'] = 'Bulgaria';
		land_namen_en['deutschland'] = 'Germany';
		land_namen_en['daenemark'] = 'Denmark';
		land_namen_en['frankreich'] = 'France';
		land_namen_en['finnland'] = 'Finland';
		land_namen_en['griechenland'] = 'Greece';
		land_namen_en['gro�britannien'] = 'Great Britain';
		land_namen_en['irland'] = 'Ireland';
		land_namen_en['island'] = 'Iceland';
		land_namen_en['italien'] = 'Italy';
		land_namen_en['kroatien'] = 'Croatia';
		land_namen_en['luxemburg'] = 'Luxembourg';
		land_namen_en['mazedonien'] = 'Macedonia';
		land_namen_en['niederlande'] = 'Netherlands';
		land_namen_en['norwegen'] = 'Norway';
		land_namen_en['polen'] = 'Poland';
		land_namen_en['rumaenien'] = 'Romania';
		land_namen_en['russland'] = 'Russia';
		land_namen_en['schweden'] = 'Sweden';
		land_namen_en['schweiz'] = 'Switzerland';
		land_namen_en['serbien'] = 'Serbia';
		land_namen_en['slovakei'] = 'Slovakia';
		land_namen_en['slovenien'] = 'Slovenia';
		land_namen_en['spanien'] = 'Spain';
		land_namen_en['tschechische republik'] = 'Czech Republic';
		land_namen_en['ukraine'] = 'Ukraine';
		land_namen_en['ungarn'] = 'Hungary';
		land_namen_en['weissrussland'] = 'Belarus';
		land_namen_en['oesterreich'] = 'Austria';
		land_namen_en['usa / canada'] = 'USA (United States of America)';
		land_namen_en['mexico'] = 'Mexico';
		land_namen_en['brasilien'] = 'Brazil';
		land_namen_en['venezuela'] = 'Venezuela';
		land_namen_en['afrika'] = 'South Africa';
		land_namen_en['china'] = 'China';
		land_namen_en['indien'] = 'India';
		land_namen_en['israel'] = 'Israel';
		land_namen_en['malysia'] = 'Malaysia';
		land_namen_en['australien'] = 'Australia';
		land_namen_en['kasachstan'] = 'Kazakhstan';
                land_namen_en['neuseeland'] = 'New Zealand';
		//land_namen_en[''] = '';
	
	if($('lang').get('value')==1){
		x = $$('map area');
		for (var i=0;i<x.length;i++){
			var land = x[i].get('alt').toLowerCase();
			land = land.replace(String.fromCharCode(228),"ae");
			land = land.replace(String.fromCharCode(246),"oe");
			land = land.replace(String.fromCharCode(223),"ss");
			//var a = land[0].charCodeAt(0);
			//a = String.fromCharCode(a);
			//alert(land+' '+a);
			//x[i].set('title',x[i].get('alt'));
			x[i].set('title',land_namen_en[land]);
			x[i].set('alt',land_namen_en[land]);
		}
	}
	if($('lang').get('value')==0){
		x = $$('map area');
		for (var i=0;i<x.length;i++){
			x[i].set('title',x[i].get('alt'));
		}
	}
	
	


}


function marginEuropa(){
	if($('map_6282')||$('map_6006')){
		$$('div.tx-hagweltweit-pi2')[0].setStyle('margin-right','35px');
		
	}
	
}
