click() event is calling twice in jquery
Make un unbind before the click;
$("#link_button").unbind('click');
$("#link_button")
.button()
.click(function () {
$("#attachmentForm").slideToggle("fast");
});
Make sure and check that you have not accidentally included your script twice in your HTML page.