var homeEvents = function () {
	var servs = document.getElementById("mainservices");
	if (servs != null) {
		var lis = servs.getElementsByTagName("LI");
		for (var i=0; i<lis.length; i++) {
			lis[i].onmouseover = function () {
				this.className = 'over';
			}
			lis[i].onmouseout = function () {
				this.className = '';
			}
			lis[i].onclick = function () {
				var link = this.getElementsByTagName("A");
				var url = link[0].href;
				document.location = url;
				return false;
			}
		}
	}
}
