var Home = {
    init : function() {
        $(document).ready(function(){
            Home.handleSlideShow();
            
            // ie 7 zindex fix
            $(function() {
                var zIndexNumber = 1000;
                $('div').each(function() {
                    $(this).css('zIndex', zIndexNumber);
                    zIndexNumber -= 10;
                });
            });
        });
    },

    handleSlideShow: function() {
        $('#slideShow').cycle({ 
            fx     : 'scrollLeft', 
            speed  : 500,
            timeout: 3000
        });
    }
}

Home.init();
