$(function() {
	$.tools.tooltip.conf.effect = "slide";

});

// execute your scripts when the DOM is ready. this is a good habit
$(function() {

	// select all desired input fields and attach tooltips to them
	$("#searchfield").tooltip({
		position: "bottom center",
		tip: '#tip_toplink'
	})

	$("a.tip_topstd").tooltip({
		position: "bottom center",
		tip: '#tip_toplink'
	});

});