function Ausrichten()
{	
	b = document.getElementsByTagName('body')[0];
	d = document.getElementById('container');
	
	if(b.offsetWidth < 782)
	{
		d.style.left = '0px';
		d.style.top = '0px';
		d.style.marginLeft = '0px';
		d.style.marginTop = '0px';
	}
	else
	{
		d.style.left = '';
		d.style.top = '';
		d.style.marginLeft = '';
		d.style.marginTop = '';		
	}
}

window.onload = Uhr; Ausrichten; 
window.onresize = Ausrichten;
