это только один из множества способов
$('.open').live('click', function(){
$(this).addClass('fixed');
});
$('.close').live('click', function(){
$(document).find('.fixed').removeClass('fixed');
});
function fixPaneRefresh(){
if (jQuery("#toolbar").length && ! $(document).find('.fixed').length) {
var top = getScrollTop();
if (top < 410) jQuery("#toolbar").css("margin-top",410-top+"px");
else jQuery("#toolbar").css("margin-top","0");
}
}