//deklaration
var maxWidth = 0;
var aktThumb = null;


//wird gealden wenn html geladen ist
$(document).ready(function() {
	

	
// Scrollpfeile initiieren
	$("#ContentHome img").fadeOut(0);
	
	$('#ContentHome img').load( function() {
		$(this).fadeIn(1500);
	})
	
});


