window.onload = function() {
	$$('a.tip').each(function(link) {
		link.addEvent('click', function(e) {
			e = new Event(e).stop();
			$(this.get('rel')).toggleClass('hide');
		});
	});
}