// JavaScript IGA

// $(this).parents(".klappbox:first").find(".klappcontent").toggle();
// $('#bgraus').animate({opacity:'show'},200,'swing');

$(document).ready(function() {

	$(".projekt-item").mouseenter(function() {
		$(this).children(".pr-item-titel").animate({opacity:'show'},100);
		return false;
	}).mouseleave(function() {
		$(this).children(".pr-item-titel").animate({opacity:'hide'},10);
	});
	
	$("#content-right-left-in").children("*:first").css("margin-top","0");
	$("#content-right-left-in").children("*:first").children("*:first").css("margin-top","0");
	$("#content-right-right-in").children("*:first").css("margin-top","0");
	$("#content-right-right-in").children("*:first").children("*:first").css("margin-top","0");
	$("#news").children("*:first").css("margin-top","0");

});
