﻿// JScript File

function mOver(stemp) {
	var myElement = document.getElementById(stemp);
	myElement.style.backgroundColor = '#132D53';
}

function mOut(stemp){
	var myElement = document.getElementById(stemp);
	myElement.style.backgroundColor = '#5489D8';
}


