﻿//Namespace for all 4-Tell code
(function (_4TellBoost, $, undefined) {

	/* Just makes a given tout scrollable, by smacking some CSS in there to make it all work.
	 * doesn't add anything beyond that.
	*/
	_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


