Hello EXT.net

Ive been trying for 2 days now to make a propper facebook-like notification indicator on a tabstrip item ive got.

I have a small 1 Name:  update1.png
Views: 5
Size:  885 Bytes that should be attached like:

Click image for larger version. 

Name:	working.png 
Views:	5 
Size:	21.9 KB 
ID:	4613

trouble is that the positioning code is not dynamic so when i click another tab it could look like this:

Click image for larger version. 

Name:	not working.png 
Views:	4 
Size:	14.6 KB 
ID:	4614

Ive tried to use jQuery but i cant work out using DOM on the tabstripitems, so i cant make jQuery dynamicly replace the small notification indicator. heres the java


        $(document).ready(function () {
            var find = $("#NewsPanel");
            var offset = find.offset();
            var top = offset.top - 5;
            var left = offset.left + 70;
            $("#img_NewsnoteOnAll").offset({ top: top, left: left });
            $("#debug").text = top.toString + left.toString();
        });
Any suggestions?