$(document).ready(function(){	
													 
		//fadein start images
		$("#box_over_1").fadeTo(0,0.7).fadeTo(1000,1.0);
		$("#box_over_2").fadeTo(0,0.7).delay(1000).fadeTo(1500,1.0);
		$("#box_over_3").fadeTo(0,0.7).delay(2000).fadeTo(2000,1.0);
		//image mouseover
		$("#mid .box_startimage a").mouseover(function() {
			$(this).children().css("display","block");
		}); 
		$("#mid .box_startimage a").mouseout(function() {
			$(this).children().css("display","none");
		});

		//fadein areabild
		//$("#midleft").fadeTo(0,0.8).fadeTo(500,1.0);
            
		//animation textblock 2
		var height_text1 = $("#textblock_1").height();
		var height_text2 = $("#textblock_2").height();
		if (height_text2 > height_text1) {
		var 	height_text1 = height_text2 + "px";
			$("#textblock_1").css("height",height_text1);
			}
		$("#textblock_2").delay(1000).animate({left: "+=240px"}, 1000 ); 
		
});	

