﻿
App = function () {

    /* Private */

    /* Properties */

    var cmp = {};





    /* Defaults */

    TVI.debug = true;





    /* Methods */

    var init = function () {

        /* Constructor */
        TVI.Components.initialize($('BODY'));

        /* Basket Dropdown */
        $('#basket #basketButton').mouseover(function () {
            $('#basket #basketRollover').stop(true, true).slideDown();
            return false;
        });
        $('#basket').mouseleave(function () {
            $('#basket #basketRollover').stop(true, true).slideUp();
            return false;
        });


    };





    /* Public */

    TVI.apply(cmp, {

        /* Properties */

        test: 'test',

        /* Methods */

        test: function () {

            /* Test function  */

        }

    });


    TVI.ready(init);


    return cmp;


} ();
