function shineOn(id) {
	if(id == "order")
		document.getElementById(id).style.backgroundColor='#fff2f2';
	else
		document.getElementById(id).style.backgroundColor='#FAFAFA';
}
function shineOff(id) {
	document.getElementById(id).style.backgroundColor='white';
}