$(document).ready(function()
{
	// suche alle "sections", verstecke sie und
	// packe sie in die variable "mySections"
 
	var mySections = $("p").hide();
	mySections.each(function (i)
	{
		$(this).delay(i * 220).fadeIn('slow');
	});
	var mynav = $("#menu_horiz").hide();
	mynav.each(function (i)
	{
		$(this).delay(i * 220).fadeIn('slow');
	});
 
});
$(document).ready(function()
{
	// suche alle "sections", verstecke sie und
	// packe sie in die variable "mySections"
 
	var mylinks = $("a").hide();

	mylinks.each(function (i)
	{
		$(this).delay(i * 110).fadeIn();
	});
    $('#thumbscroller').hide();
	$('#thumbscroller').slideDown("slow");
});




window.setInterval("zeitanzeige()",1000);
function zeitanzeige()
{
	d = new Date ();
	h = (d.getHours () < 10 ? '0' + d.getHours () : d.getHours ());
	m = (d.getMinutes () < 10 ? '0' + d.getMinutes () : d.getMinutes ());
	s = (d.getSeconds () < 10 ? '0' + d.getSeconds () : d.getSeconds ());
 
	var monate = new Array ("01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12");

	document.getElementById("zeit").innerHTML = 
	+ d.getDate () + '.'
	+ monate[d.getMonth ()] + '.'
	+ d.getFullYear () + ' '
	+ h + ':' + m + ':' + s ;
}

