

		$(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: "-260px",
							height: "195px",
							padding: "0"
						});
					formElems.fadeOut("normal");
					$(this).attr("src", "img/servicebar.png").css("top", "0px");
				} else {
					feed.data("showing", true)
						.animate({
							marginLeft: "25",
							height: "500px",
							padding: "0px"
						});
					formElems.fadeIn("normal");
					$(this).attr("src", "img/servicebar-close.png").css("top", "50px");
				}
			})
		});
	

