﻿
App = function() {

    /* Private */

    /* Properties */

    var cmp = {};





    /* Defaults */

    TVI.debug = true;





    /* Methods */

    var init = function() {

        /* Constructor */
        $('#topNav li a').each(function() {

            if (window.location.toString().indexOf($(this).attr('href')) > 0) {
                $(this).addClass('selected');
            }
            if (window.location.toString().indexOf('enquiries.aspx') > 0 && $(this).attr('href') == 'offices.aspx') {
               $(this).addClass('selected');
            }

        });


    };





    /* Public */

    TVI.apply(cmp, {

        /* Properties */

        test: 'test',

        /* Methods */

        test: function() {

            /* Test function  */

        }

    });


    TVI.ready(init);


    return cmp;


} ();
