var sl = function(){
    return {
        init: function(){
            this.slideshow();
        }
        , slideshow : function(){
            $(".slideshow .imgs").cycle({height: '327px' ,width: '628px' });
            $("#text-slideshow .text").cycle({});
            
        }
    }
} ();


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

