function bindOpenPhrase(element) {
	var box = $(element).next('.autoPhraserLinks');
	box.stop().fadeTo(250, 1);
	box.closest('.autoPhraser').mouseleave(function() {
		box.stop().fadeTo(250, 0, function() {
			$(this).css("display", "none");	
		});
	});
	box.closest('.autoPhraser').mouseenter(function() {
		box.stop().fadeTo(250, 1, function() {
			$(this).css("display", "block");
		});
	});
}
