$(document).ready(function(){
	$("a[rel=help]").each(function(){
		var bubble = $(this).parent().find('.bubble');
		var height = bubble.height()+92;
		bubble.css("top","-"+height+"px");
	});
	$("a[rel=help]").bind('click',function(e){
		e.stopPropagation();
		$(this).parent().find('.bubble').toggle();
	});
	$("body").bind('click',function(e){$('.bubble').hide();});
});