var i = setInterval(function() {
	var s;
	if (s = document.getElementById("sqempty")) {
		clearInterval(i);
		s.onfocus = function() { s.id = "sq"; }
		s.onblur = function() { s.id = s.value ? "sq" : "sqempty"; }
	}
}, 100);
