var scrollSpeed = 2;
var tempSpeed = scrollSpeed;
var currentPos = 0;

function scroller(ch){
	$('#inner_scrollin_stuf').css('top',(currentPos-tempSpeed));
	currentPos=currentPos-tempSpeed;
	if (currentPos<-ch){
		currentPos = 0;
		$('#inner_scrollin_stuf').css('top',(currentPos-tempSpeed));		
	}
}
$(document).ready(function(){
	var scrollContent = $('#inner_scrollin_stuf').html();
	var contentHeight = $('#inner_scrollin_stuf').height();
	$('#inner_scrollin_stuf').append(scrollContent);
	setTimeout(function(){
		var scrollInt = setInterval(scroller,200, contentHeight);
	}, 5000);
	$('#inner_scrollin_stuf').hover(function(){
		tempSpeed = 0;
	}, function(){
		tempSpeed = scrollSpeed;
	})
	
});

	