// JavaScript Document feedback

		$(document).ready(function() {
			var feed = $('#feedback');
			feed.css("display", "block").data("showing", false).children("form, h3").hide()
			feed.children("img").click(function() {
				var t = feed;
				if(t.data("showing") == false) {
					t.animate({
						marginLeft: "0",
						height: "300px"
					}).data("showing", true).children("img").attr("src", "kepek/hide-this.jpg").css("top", "100px").siblings().show();
				} else {
					t.animate({
						marginLeft: "-300px",
						height: "120px"
					}).data("showing", false).children("img").attr("src", "kepek/feedback.jpg").css("top", "0").siblings().hide();
				}
				
			})
			
		}); //end document ready


