The code is :
$("#radioGroup").click(function() {
$("#groupSpan").css("display", "block");
$("#advisorSpan").css("display", "none");
});
and for second button of radio group:
$("#radioAdvisor").click(function() {
$("#groupSpan").css("display", "none");
$("#advisorSpan").css("display", "block");
});
this works fine, well almost. If you scroll between clicking radio buttons, the span is displayed in the inccorect position - basically where it shoudl have been before scroll - looks well strange jsut appears over completely unrelated elements.
Please help?