$(".scroller").scrollable({
	items: '#tools',
	size: 1,
	clickable: false
}).navigator();


$(document).ready(function() {
	
	$('.bannerContainer')
		.hover(function(e) {
			$(this).find('.textContainer').hoverFlow(e.type, { width: 301}, /*206*/
				{
					duration: 'fast', 
					complete: function(){
						$(this).find('.pad').show();
					}
				}
			).hoverFlow(e.type, {left: 562});/*657*/
		}, 
		function(e) {
			$(this).find('.textContainer').hoverFlow(e.type, { left: 839 }, /*837*/
				{
					duration: 'fast', 
					complete: function(){
						$(this).find('.pad').hide();
					}
				}
			).hoverFlow(e.type, {width: 21});
		}
	);
});