/**
 * Created by JetBrains PhpStorm.
 * User: tommy
 * Date: 23/05/2011
 * Time: 18:43
 * To change this template use File | Settings | File Templates.
 */
$(function(){
    function run(){
        $('section#main>article').eq(0).fadeOut(1500, function(){
            $(this).appendTo($('section#main')).hide();
            $('section#main>article').eq(0).removeAttr('style').hide().fadeIn(1500);
        })
    }
    setInterval(run, 15000);
})
