$(function() {
	
	observeI();
	
});

function observeI() {
	
	$('img[alt=I]').each(function() {
		rel = $(this).attr('rel');
		$(this).qtip({ content: { text: rel, prerender: true }, show: { effect: { type: 'none', length: 0 }, delay:0 }, hide: 'mouseout'});
	});
}
