так усе работает
<script>
$(document).ready(function(){
$("#callback_active").click(function () {
var sel = document.getElementById("callback_form_before").style;
if(sel.display == "none")
$("#callback_form_before").show("slow");
else $("#callback_form_before").hide("slow");
});
});
</script>
<body>
<button id="callback_active">click!</button>
<div id="callback_form_before" style="width:20; height:20; background-color:red"></div>
</body>