(function($) {
$(document).ready(function(){
	var delay = 1000;
	
	$('div#main_content_header').hide();
	
	$('div#main_content_header').animate({opacity: 1.0}, delay, function() {
		$(this).slideDown("slow");
		$(this).fadeIn("slow");
	});
	
	/*
	if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 &&
     navigator.userAgent.indexOf("Windows") != -1 &&
     navigator.userAgent.indexOf("Windows 3.1") == -1) {
     document.write('<script type="text/vbscript"> \n');
     document.write('on error resume next \n');
     document.write('Sub EierUhrFScom_FSCommand(ByVal befehl, ByVal laufStatus)\n');
     document.write('  call EierUhrFScom_DoFSCommand(befehl, laufStatus)\n');
     document.write('end sub\n');
     document.write('</script\> \n');
  }
  
  function EierUhrFScom_DoFSCommand(befehl, laufStatus) {
    if(befehl=="melden") {
    $('div#main_content_header').animate({opacity: 1.0}, 100, function() {
  		$(this).slideDown("slow");
  		$(this).fadeIn("slow");
  	});
    }
  }
  */

  
  
	
	
	
});
})(jQuery);