$(document).ready(function() {
	/* hide() if loading ist not finished */
	$(".hide").stop().animate({"opacity": 0}, 0);
	$('.loading').hide();
	$(window).load( function() {
		/* load, then fade in */
		$('.loading').show();
		$(".fadeIn").stop().delay(250).animate({"opacity": 1}, 500, "easeInOutExpo");
	});
});
