$(document).ready(function() {
			var feed = $("#feedback"),
				img = feed.children("img"),
				formElems = feed.children("form, h3");
			
			feed.css("display", "block").data("showing", false);
			formElems.hide();
			
			img.click(function() {
				if(feed.data("showing") == true) {
					feed.data("showing", false)
						.animate({
							marginLeft: "-330px",
							height: "120px",
							padding: "0"
						});
					formElems.fadeOut("normal");
					$(this).attr("src", "http://www.thomagroep.nl/thoma/images/feedback.png").css("top", "0px");
				} else {
					feed.data("showing", true)
						.animate({
							marginLeft: "0",
							height: "220px",
							padding: "10px"
						});
					formElems.fadeIn("normal");
					$(this).attr("src", "http://www.thomagroep.nl/thoma/images/hide.png").css("top", "116px");
				}
			})
		}); //end document ready
		
$(document).ready(function() {
			var feed = $("#feedback2"),
				img = feed.children("img"),
				formElems = feed.children("form, h3");
			
			feed.css("display", "block").data("showing", false);
			formElems.hide();
			
			img.click(function() {
				if(feed.data("showing") == true) {
					feed.data("showing", false)
						.animate({
							marginLeft: "-330px",
							height: "120px",
							padding: "0"
						});
					formElems.fadeOut("normal");
					$(this).attr("src", "http://www.thomagroep.nl/thoma/images/bedankt.png").css("top", "0px");
				} else {
					feed.data("showing", true)
						.animate({
							marginLeft: "0",
							height: "220px",
							padding: "10px"
						});
					formElems.fadeIn("normal");
					$(this).attr("src", "http://www.thomagroep.nl/thoma/images/hide.png").css("top", "116px");
				}
			})
		}); //end document ready
