function decrypt (string){
	key="alvensleben";
	array_alphabet=new Array("0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","@","-",".",":","_","%");
	var result="";

	for(i=0;i<string.length;i++){
		var j=0;
		while(j<array_alphabet.length&&string.charAt(i)!=array_alphabet[j])j++;
			position_char=j;
			j=0;
			//alert(string.charAt(i));
		while(j<array_alphabet.length&&key.charAt(i%key.length)!=array_alphabet[j])j++;
			position_key=j;
			position=(position_char-position_key)%array_alphabet.length;
			if(position<0)position+=array_alphabet.length;

			//alert(key.charAt(i%key.length));

			result+=array_alphabet[position];
			//alert(array_alphabet[position]);

	}
	document.location.href=decodeURIComponent(result);
}
var twitterTimer=false;
var twitterSpeed=10;
function showTwitter(){
	twitterTimer=false;
	obj=document.getElementById('twitter');
	var left=parseInt(obj.style.left);
	if (left==0) twitterSpeed=-27;
	if (-300<=left && left<=0){
		left+=twitterSpeed;
		if (left>0) left=0;
		obj.style.left=left+'px';
		if (left!=0) twitterTimer=window.setTimeout('showTwitter();',15);
	}
};
function closeTwitter(){
	twitterSpeed=-27;
	if(!twitterTimer)showTwitter();
}

