function rollMe(id,state){
	switch(state){
		case 'over':
		document.getElementById(id).style.backgroundColor='#FAF8BB';
		break;
		case 'out':
		document.getElementById(id).style.backgroundColor='#FFFFF0';
		break;
	}
}
