﻿
MAK.Home = function() {

    /* Private */

    /* Properties */

    var cmp = {};





    /* Methods */

    var init = function() {

        /* Constructor */

        // Remove dotted line from bottom menu items
        $('#homeNewsBox .story:last').css({ 'border-bottom': 'none', 'padding-bottom':'0' });


    };





    /* Public */

    TVI.apply(cmp, {

        /* Properties */

        test: 'test',

        /* Methods */

        test: function() {

            /* Test function  */

        }

    });


    TVI.ready(init);


    return cmp;


} ();
