$(document).ready( function() {
	
	$('#makeMeScrollableToo').mouseover(function(){
		$('#makeMeScrollableToo').smoothDivScroll('stopAutoScroll');
	}).mouseout(function(){
		$('#makeMeScrollableToo').smoothDivScroll('startAutoScroll');
	});
	
	$('#makeMeScrollable').mouseover(function(){
		$('#makeMeScrollable').smoothDivScroll('stopAutoScroll');
	}).mouseout(function(){
		$('#makeMeScrollable').smoothDivScroll('startAutoScroll');
	});
	
	$('.photostream:nth-child(3n+1)').css('margin-left','0');

});
