// JavaScript Document
function Add_To_List(list){
	up=document.getElementById('PH_Userlogin').innerHTML;
	ul="'.$_SESSION['userlogin'].'";
	show="List_"+list;
	ajaxTrubit("42", "", "POST", show, "", ul, up, "", list);
	}

$(document).ready(function(){
    $("#UA_List_Button").bind("click", function(d) {
        $("#UA_Lists").css({
                left:$(this).offset().left,
                top:$(this).offset().top+20
            }).show();
		d.stopPropagation();  // Stops the following click function from being executed
        $(document).one("click", function(d) {
            $("#UA_Lists").hide();

        });
    });
// STOP the menu from disappearing when it is clicked
$("#UA_Lists").bind('click', function(d) { d.stopPropagation(); });
});
