PrototipOptions = {
	closeButton: false,
	hideOn: { element: '.body', event: 'click' },
	hideOn: 'click',
	hook: { target: 'bottomRight', tip: 'topLeft' },
	hideOthers: true,
	showOn: 'click',
	stem: 'topLeft',
	viewport: true,
	width: 200,
	radius: 2,
	border: 2
};

PrototipExtensions = {
	init: function() {
		$(document.body).linkify(Tips.hideAll.bind(Tips));
	}
}

Event.observe(window, 'load', PrototipExtensions.init.bind(PrototipExtensions));
