$(document).ready(function() {

	$('.follow a').each(function() { $(this).text(''); });

	$('.nb_footer a').each(function() {
		$(this).text($(this).text().replace('See the profile of','Send'));
		$(this).text($(this).text() + ' a TEXT');
		$(this).text('');
		$(this).append('<button class="button_small">Text Me !</button>');
	});

	$("#messenger").delay(1000).animate({bottom:"10"}, '140');
	msgtimeOutId = setTimeout("$('#messenger').animate({bottom:'-320'}, '150')", 18000);

	$("#messenger").hover(function () { clearTimeout(msgtimeOutId); }
			,function () { msgtimeOutId = setTimeout("$('#messenger').animate({bottom:'-320'}, '150')", 5000); }
	);

	$("#messenger").hover(function () { clearTimeout(msgtimeOutId);  }
						, function () { msgtimeOutId = setTimeout("$('#messenger').animate({bottom:'-320'}, '150')", 5000); }
	);

	$("#messenger_close").click(function() { $('#messenger').animate({bottom:"-320"}, '150'); });
});
