// Follow me Button
	$(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: "-300px",
							height: "120px",
							padding: "0"
						});
					formElems.fadeOut("normal");
					$(this).attr("src", "resimler/sosyalmedya.png").css("top", "0px");
				} else {
					feed.data("showing", true)
						.animate({
							marginLeft: "0",
							height: "280px",
							padding: "10px"
						});
					formElems.fadeIn("normal");
					$(this).attr("src", "resimler/gizle.png").css("top", "100px");
				}
			})
		}); //end document ready

