window.addEvent('domready', function() {
	$$('form').each(function(label) {
		$$('label.label').each(function(label) {
			label.destroy();
		});
		
		$$('form table td.tdlabel').each(function(td) {
			var styleTd = 'width:0px; height:0px;';
			if (td.get('text') == '') {
				styleTd += ' padding:0;'
			}
			
			td.set('style', styleTd);
		});
		
		$$('input.champ').each(function(input) {
			new OverText(input);
		});
		
		$$('textarea').each(function(textarea) {
			new OverText(textarea);
		});
	});
});