$(document).ready(function(){
    $('.help').click(function(){
        n=window.open($(this).attr('href'),'biknhelp','width=480');
        if(window.focus){n.focus()};
        return false;
    });
    $('.tip').each(function(){
        $(this).data('title', $(this).attr('title'))
        $(this).attr('title', '')
    });
    $('.tip').hover(
        function(){
            p=$(this).position()
            $(this).after('<span style="top:'+(p.top-32)+'px;left:'+(p.left+$(this).outerWidth()/2-36)+'px" id="tip">'+$(this).data('title')+'</span>')
        },
        function(){
            $('#tip').remove()
        }
    );
});

