// Scripts for product link styles

function highlightNihongo (textID) {
	var highlightColor = "#928c36";
	document.getElementById(textID).style.color = highlightColor
}

function resetNihongo (textID) {
	document.getElementById(textID).style.color = ""
}