// JavaScript Document
function changeColor(box, flag){
	if(flag == "over"){
    	box.lastChild.previousSibling.style.color = "#666666";
   		box.style.backgroundColor = "#E5E5E5";
	}else{
		box.lastChild.previousSibling.style.color = "#b2b2b2";
    	box.style.backgroundColor = "#ffffff";
	}
}

function changeColorBox(box, flag){
	if(flag == "over"){
    	box.lastChild.previousSibling.style.color = "#666666";
   		box.style.backgroundColor = "#E5E5E5";
	}else{
		box.lastChild.previousSibling.style.color = "#b2b2b2";
    	box.style.backgroundColor = "#f5f5f5";
	}
}

