function dom_init() {

	$('#newsletter input[type=text], #quick_find input[type=text]').focus(function(){
		text = this.value;
		this.value = "";
	});
	$('#newsletter input[type=text], #quick_find input[type=text]').blur(function(){
		if (this.value == "") {
			this.value = text;
		}
	});
	
	
	$('#content input[type=text], #content select, #content textarea').each(function(i){
	   $(this).attr('id','labelnr'+i).prev().attr('for','labelnr'+i);	   
	});
	$('#content input[type=checkbox], #content input[type=radio]').each(function(i){
	   $(this).attr('id','labelinr'+i).next().attr('for','labelinr'+i);	   
	});
	
	

}
