// ShopJillys Home Page 
// Brand Logos Scrolling Options
	$(window).load(function() {
		$("div#makeMeScrollable").smoothDivScroll({ 
			autoScroll: "onstart" , 
			autoScrollDirection: "endlessloopright", 
			autoScrollStep: 1, 
			autoScrollInterval: 30
		});
		
		// Pause the logos from scrolling while the user has their mouse of the scrolling logo rectangle. 
		$("div#makeMeScrollable").bind("mouseover", function() {
			$(this).smoothDivScroll("stopAutoScroll");
		}).bind("mouseout", function() {
			$(this).smoothDivScroll("startAutoScroll");
		});


		
	});
