﻿App.category = function () {

    /* Private */

    /* Properties */

    var cmp = {};


    /* Methods */

    var init = function () {


        $('.images').height('100px').css('overflow', 'hidden');
        $(window).load(function () {
            $('.images img').each(function () {

                if ($(this).height() > $('.images').height()) {
                    $('.images').height($(this).height());
                }

            });
            $('.images').cycle();
        });
    };






    /* Public */

    TVI.apply(cmp, {

    });


    TVI.ready(init);


    return cmp;


} ();

