// JavaScript Document window.addEvent('domready', function(){ var ads = $$('.ads'); ads.each(function(element) { var fx = new Fx.Styles(element, {duration:800, wait:false}); element.addEvent('mousedown', function(){ fx.start({ 'opacity' : '0' }); }); }); }); window.addEvent('domready', function(){ $('ads').onmousedown=function(){ var p = new Ajax('ip-log.php', { postBody:this, update:'.ads', method:'post', evalScripts: true }).request(); return false; } });