$(function(){
	// Vertical
	$("#thumbleft").hover(function(){
		$("#thumbrow").stop().animate({left:"0px"},{queue:false,duration:speedofscroll});
	}, function() {
		$("#thumbrow").stop();
	});
	// Horizontal
	$("#thumbright").hover(function(){
		$("#thumbrow").stop().animate({left:(-(totalthumbs))+"px"},{queue:false,duration:speedofscroll});
	}, function() {
		$("#thumbrow").stop();
	});
});
