
//Scroll
var timeout;
var moving = false;

function scrollUp(){
	var topActual = ($("#thumbScrollVideos ul").offset().top-$("#thumbScrollVideos").offset().top);
	if ($("#thumbScrollVideos ul").offset().top-$("#thumbScrollVideos").offset().top < 0) {
		$("#thumbScrollVideos ul").animate({top: (topActual+133)}, 300, null, function(){moving = false;});
	}else{
		moving = false;
	}
}

function scrollDown(){
	var topActual = ($("#thumbScrollVideos ul").offset().top-$("#thumbScrollVideos").offset().top);
	var lastLi = 530-($("#thumbScrollVideos ul").find("li:last").offset().top);
	if ($("#thumbScrollVideos ul").height() > $("#thumbScrollVideos").height() && lastLi <= 34) {
		$("#thumbScrollVideos ul").animate({top: (topActual-133)}, 300, null, function(){moving = false;});
	}else{
		moving = false;
	}
}
