        (function($){
            $.fn.sharebox = function(){
                var element = this;

                var i = 10;
                var j = 0;
				$(element).find("li").each(function(i){ 
					$(this).css("z-index", 10- i); 
					if (i>0) 
						$(this).css("left", i * 24 + 100); 
				});				
            }
        })(jQuery);