
var santa_start_x = 1400;
var santa_x = 0;
var santa_start_y = 300;
var santa_y = 0;
var santa_max_amplitude = 50;
var santa_amplitude = 0;
var santa_max_speed = 4;
var santa_speed = 0;

function init_santa()
	{
	}

function init_santa_echt()
	{
	var santa = document.getElementById("santa");
	santa_x = santa_start_x;
	santa_y = santa_start_y;
	santa.style.left = santa_x + "px";
	santa.style.top= santa_y + "px";
	
	santa_amplitude = santa_max_amplitude*Math.random();
	santa_speed = santa_max_speed*Math.random() + 1;
	
	window.setTimeout("move_santa()",6000);
	}



function move_santa()
	{
	santa_x = santa_x - santa_speed;
	if (santa_x < -100) { santa_x = santa_start_x; }
	santa_y = santa_start_y + Math.sin(santa_x / 100)*santa_amplitude;
	var santa = document.getElementById("santa");
	santa.style.visibility = "visible";
	santa.style.left = santa_x + "px";
	santa.style.top =  santa_y + "px";
	window.setTimeout("move_santa()",60);	
	}


