// inputs with labels

if(document.getElementsByTagName) window.onload = function() {
	var inputs = document.getElementsByTagName('input');
	for(var i = 0; i < inputs.length; i++) {
		if(inputs[i].className == 'valuelabel') {
			inputs[i].onfocus = function() { if(this.honkiSecret == this.value) this.value = ''; };
			inputs[i].onblur = function() { if(this.value.length==0) this.value = this.honkiSecret; };
			inputs[i].honkiSecret = inputs[i].value;
		}
	}
}