﻿function OnLoad() {
	var icqdivs = $("allicqnumbers").getElementsByTagName('DIV');
	for (var i = 0; i < icqdivs.length; ++i)
		icqdivs[i].addEventListener( "click",
		function() {
			this.style.backgroundColor = (this.style.backgroundColor == "" ? "#eee" : "");
		},
		false );
}