var sl = function(){
    return {
        init: function(){
            this.slideshow();
        }
        , slideshow : function(){
            $(".text p").cycle({

            });
        }
    }
}();

$(function(){
    sl.init();
})
