function toggleLang(language,content,dir){
	switch(language)
	{
	case 'DE':
	  if(dir=='up')
	  	document.location='/'+content+'/'+'EN';
	  else
	  	document.location='/'+content+'/'+'SV';
	  break;    
	case 'EN':
	  if(dir=='up')
	  	document.location='/'+content+'/'+'NL';
	  else
	  	document.location='/'+content+'/'+'DE';
	  break;
	case 'NL':
	  if(dir=='up')
		document.location='/'+content+'/'+'SV';
	  else
	  	document.location='/'+content+'/'+'EN';
	  break;	  
	default:
	  if(dir=='up')
	  	document.location='/'+content+'/'+'DE';
	  else	
	  	document.location='/'+content+'/'+'NL';
	}	
}