window.addEvent('domready', function() { // load spreadshirt content var spinner = $('retro-shirt-shop').addClass('ajax-loading'); var ajaxSpreadshirt = new Ajax('http://www.retromagazine.eu/retro/wp-content/plugins/spreadshirt/srp.php', { method: 'get', update: $('retro-shirt-shop'), evalScripts: true, onComplete: function() { // when complete, we remove the spinner spinner.removeClass('ajax-loading'); } }).request(); // Tooltips var Tips2 = new Tips($$('.tip'), { initialize:function(){ this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 200, wait: false}).set(0); }, onShow: function(toolTip) { this.fx.start(1); }, onHide: function(toolTip) { this.fx.start(0); } }); });