jQuery(document).ready(function()  {

	$dissolve = function() {
		jQuery("#layerAD").animate({
			opacity:[0, "linear"],
			width: "0px",
			left: "50%",
			height: "0px",
			top: "50%"
		},500);

		jQuery("#layerADInhalt").animate({
			opacity:[0, "linear"],
			width: "0px",
			height: "0px",
			marginLeft: "0px",
			marginTop: "0px"
		},500);

	};

	jQuery("#layerAD").delay(1000).animate( {
		opacity:[0.5, "linear"],
		width: "100%",
		left: "0px",
		height: "100%",
		top: "0px"
	},500).click($dissolve);
	jQuery("#layerADInhalt").delay(1000).animate( {
		opacity:[1, "linear"],
		width: "300px",
		height: "270px",
		marginLeft: "-150px",
		marginTop: "-135px"
	},500).click($dissolve);

	// Werbung 4 platzieren !!!
	var $ad4 = jQuery("#ad4");
//	jQuery("#content").not(".news-latest-item").find("p").eq(0).append($ad4);
	jQuery("#content").not(".news-latest-item").append($ad4);
	jQuery("#content").find(".news-latest-item").eq(6).append($ad4);

});

