//Ladeanimation

/*jQuery(function($) {
$("#contentArea").load("modules.php");
});

$().ajaxSend(function(r,s){
$("#contentLoading").show();
});

$().ajaxStop(function(r,s){
$("#contentLoading").fadeOut("fast");
});*/


// Ende

//Laden wenn Seite fertig
$(document).ready(function(){

//nach oben
	jQuery(function() {
		jQuery(window).scroll(function() {
			if(jQuery(this).scrollTop() != 0) {
				jQuery('#toTop').fadeIn();
			} else {
				jQuery('#toTop').fadeOut();
			}
		});

		jQuery('#toTop').click(function() {
			jQuery('body,html').animate({scrollTop:0},800);
		});
	});
	
// Ende
});

