Should 'this' in the following code not still refer to the DOM object selected by the MooTools selector?
$$('div').addEvent('click', function()
{
var click1 = function(){$(this).setStyle('background', 'red');}
click1();
});