/* Copyright (C) 2002-2011 by Home of the Brave
   Web http://home.of.the.brave.de
   E-Mail info@brave.de */
/* $Revision: 1.8 $ $Date: 2011/07/22 12:24:46 $ */

/* owner: Simon.Leidig@brave.de */

BodyEvents.addListener('load', function () {
	var ns = document.getElementsByTagName('input');
	for (var i = 0; i < ns.length; i++) {
		var n = ns[i];
		if (!(
			n.title &&
			n.className &&
			n.className.match(/\bcommentvalue\b/)
		)) continue;
		n.value = n.title;
		n.onfocus = function () {
			this.onfocus = null;
			this.value   = '';
		}
	}
} );

