$(document).ready(function(){
	$("#newsletter", document).fadeTo("slow", 0.33);


	$("#newsletter", document).click(function () {
		$(this).fadeTo("slow", 1);
		$(".eingaben:hidden:first").fadeIn("slow");
	});
	$(".option input", document).click(function () {
		$("#newsletter #submitnwsl").fadeIn("slow");
		$(".eingaben .beschriftung").toggle();
	});
	
	$("#newsletter", document).dblclick(function () {
		$(":submit").css("clear", "both");
		$(".eingaben").css("margin", "0");
		$(".eingaben").css("padding-top", "0");
		$(".eingaben").css("background", "none");
		$(".eingaben").css("clear", "left");
		$(this).css("height","220px");
		$(this).css("background","#515151 url(/workspace/bilder/dgd24_newsletter-bg.png) repeat-x");
		$("label").css("padding","0em 30px 0 0");
		$(this).css("margin","0");
		
	});
});