/*  JS walter
 *
 *--------------------------------------------------------------------------*/

function wD() { 
	var d = new Date()
	var today = d.getDate() + '.' + (d.getMonth() + 1) + '.' + d.getFullYear();
	return today;
}

function sV(i) { 
	i = ((i * 110)*-1)+"px";
	document.getElementById('areaSpan').style.backgroundPosition = '0 ' + i;
}

function hV() { 
	document.getElementById('areaSpan').style.backgroundPosition = '0 -1100px';
}
