// JavaScript Document

function thumbHover(b, d) {
	if(b) {
		d.style.borderColor = "#2d2f30";
	} else {
		d.style.borderColor = "#b2b6b7";
	}
}
