﻿/* Just makes a given tout scrollable, by smacking some CSS in there to make it all work.
 * doesn't add anything beyond that.
*/
function MakeScroll(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();
};
