function originalMouseOver(num) {
	document.getElementById("shouhinDiv" + num).style.borderColor='#CCC';
	document.getElementById("shouhinTitle" + num).style.borderColor='#CCC';
	document.getElementById("shouhinTitle" + num).style.backgroundColor='#EEE';
}
function originalMouseOut(num) {
	document.getElementById("shouhinDiv" + num).style.borderColor='#EEE';
	document.getElementById("shouhinTitle" + num).style.borderColor='#EEE';
	document.getElementById("shouhinTitle" + num).style.backgroundColor='#FFF';
}
