$().ready(function(){
        window.setTimeout(function(){
                $("a:contains('(?)')").click(function(s){
                        var md = $(".all").offset();
                        var x = s.pageX-md['left'];
                        var y = s.pageY-md['top'];
                        var href = $(this).attr("href");
                        $("#helper").css("display","none");
                        $("#helper").css({left:x-50,top:y-230});
                        $("#helper").show('fast');
                        if (href!="" && href!="#"){
                                $("#helper").html("Loading...");
                                $.ajax({
                                        url:href,
                                        dataType:'html',
                                        type:'GET',
					cache: false,
                                        success:function(s)
                                        {
                                                $("#closelink").unbind("click");
                                                $("#helper").html("<a href='close' id='closelink'></a><div>"+s+"</div>");

                                                $("#closelink").click(function(){
                                                    $("#helper").hide('fast');
                                                    return false;
                                                });
                                                $("#helper").show('fast');
                                        }
                                });
                        }
                        return false;
                })

        })
})

