// tooltips
window.addEvent("load", function() {
	$$('.otherItems img').each(function(item, index) {
		item.setAttribute("alt", "");
	});
	new Tips($$('.otherItems img'), {fixed: true, className: 'custom', offsets: {x:-60, y:-50}});
});
