
function animate() {
    cur.fadeOut( 1000 );
    if ( cur.attr('class') == 'last' )
            cur = $('ul.photo li:first');
    else
            cur = cur.next();
    cur.fadeIn( 1000 );
}
