/* FX.Scroll and Tips*/
/* mouseover scrolling and formatted tooltips for album browser */
/* Works with mootools-release-1.2 */
window.addEvent('domready', function(){
var customTips = $$('.albumart');
var myTips = new Tips(customTips,{className: 'mootip'});
myTips.attach($('qs'));
myTips.addEvent('show', function(tip){tip.fade('in');});
myTips.addEvent('hide', function(tip){tip.fade('out');});
});
