
$(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", "http://www.growthroute.com/images/hide.png").css("top", "410px").siblings().show();
} else {
t.animate({
marginLeft: "-300px",
height: "120px"
}).data("showing", false).children("img").attr("src", "http://www.growthroute.com/images/feedback.png").css("top", "251px").siblings().hide();
}

})

}); //end document ready

