﻿Event.observe(window, 'load', function(){
	$$('img.affiliateMemberIcon').each(function(element){
		if(element.rel != '') {
			element.alt = '';
			new Tip(
			    element
			    , '<img src="' + element.src.replace('.gif', '_over.gif') + '" />'
			    , {effect:'appear', fixed:true, offset:{x:(Prototype.Browser.Gecko) ? element.width : 0, y:0}, className:'affiliateMemberIcon'}
			);
		}
	});
});
