﻿//Namespace for all 4-Tell code
(function (_4TellBoost, $, undefined) {

// Makes a given tout scrollable. Requires jQuery to work, but it should already be present.
 
_4TellBoost.makeScroll = function(tout) {
        $(tout.divSelect).before('<a class="prev browse left"></a>');
        $(tout.divSelect).addClass('scrollable');
        $(tout.divSelect).prepend('<div class = "scrollable items">');
        $(tout.divSelect > items).css('float', 'left');
        $(tout.divselect).append('</div>');
        $(tout.divSelect).after('<a class="next browse right"></a>');
        $(tout.divSelect).scrollable();
    };

} (window._4TellBoost = window._4TellBoost || {}, jQuery));
//self-invoked namespace that protects $ and undefined internally
