Uplink = {
	init: function() {
		$$('.site').each(this.tip, this);
	},
	tip: function(el) {
		if (!el.down('.info') || !el.down('.info').innerHTML) {
			return;
		}
		new Tip(el, el.down('.info').innerHTML, {
			fixed: true,
			hideOn: 'mouseout',
			hideOthers: true,
			hook: { target: 'bottomMiddle', tip: 'topMiddle' },
                        borderColor: '#fdc99a',
			showOn: 'mousemove',
			stem: 'topMiddle',
			width: 300,
			className: 'uplink'
		});
	},
	success: function(response) {
		new Tip(this.link, response.responseText, PrototipOptions);
		this.link.prototip.show();
	},
	failure: function(response) {
		
	}
};

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

