function MouseInButton(item) {
	item.style.color = "#000000";
	item.style.backgroundColor = "#194f9e";
	item.style.cursor = "hand";
}

function MouseOutButton(item) {
	item.style.color = "#FFFFFF";
	item.style.backgroundColor = "#3366cc";
}
