Simple fade
by Matthew Day
HTML
<div id='test'>test</div>
CSS
#test {
width: 100px;
height: 100px;
background: #ffb;
padding: 10px;
border: 2px solid #999;
}
JavaScript
(function() {
$('test').fade('out');
}).delay(1000);