// include required libraries
var libraries = [
	'/js/prototip.js'
];
IncludeLibraries(libraries);

// add tool tips when ready
Event.observe(window, 'load', function() {
  $$('#suite-list tbody > tr').each(function(row) {
		var tip = row.down().innerHTML;
		if (tip) {
			new Tip(row, tip, {effect:'appear', hook:{target:'topLeft', tip:'bottomLeft'}, offset:{x:230, y:-5}});
		}
  });
});

