﻿
App.Stockists = function() {

    /* Private */

    /* Properties */

    var cmp = {};



    /* Methods */

    var init = function() {

        /* Constructor */

        // Add padding and clearing to the product gallery
        $('#stockists .stockistsItem:nth-child(2n-1)').addClass('stockistsItemLeft');
        $('#productGallery .galleryItem:nth-child(2n)').after('<div class="clear"></div>');


    };





    /* Public */

    TVI.apply(cmp, {

        /* Properties */

        test: 'test',

        /* Methods */

        test: function() {

            /* Test function  */

        }

    });


    TVI.ready(init);


    return cmp;


} ();
