$(document).ready(function(){
	if ( bob_signedIn == false ){
		$("#addToMpb").hide();
	}
	$("#iconBar .rollover").each(function(){
		var x = $(this).prevAll(".rollover").length;
		$(this).hover(
			function(){
				$(this).parent().find(".popUp").eq(x).css({
					left: (x+1)*52-14
				}).show();
			},
			function(){
				$(this).parent().find(".popUp").eq(x).hide();
			}
		);
	});
	$("#addToMpb").hover(
		function(){
			$(this).children("img").attr("src","/_images/mpb-icon-anime.gif");
		},
		function(){
			$(this).children("img").attr("src","/_images/mpb-icon.gif");
		}
	).click(function(){
		var directory_id = $(this).parents(".item:first").attr("id");
		$.post("/_asp/process.phonebook.asp",{user_email: bob_userID, directory_id: directory_id, action:"add"});
		$(this).css("background-image","/_images/spp.result.mpb-added.png");
	});
	$("#emailContact").click(function(){
		var e = $(this).text();
		popup("sendmail.asp?sendTo="+e);
	});
});
