function over(div) {
	div.style.background = "#ebf4f7";
	div.style.cursor = "pointer";
}
function out(div) {
	div.style.background = "#fff";
	div.style.cursor = "default";
}