$(function(){
	var anonses=$("#services .anons");
   var openers=$("#services a.opener").click(function(event){
   		anonses.hide();
        $(this).next().css({top:event.pageY+16,left:event.pageX+16}).fadeIn();
        return false;
    }).prepend('<span></span>');
    $(".close").click(function(){
        $(this).parent().hide();
    });
});
