function dom_init() {
	
	$('ul.gallery').each(function(){
		$(this).find('a').lightBox();
	});
	
	
	
	
	$('#searchform input[type=text]').focus(function(){
		savetext = this.value;
		this.value = "";
	}).blur(function(){
		if (this.value == "") {
			this.value = savetext;
		}
	});

	$('.post > p:first-child').not('.nocap').eq(0).each(function(){
	   if ($(this).find('img').length == 0) {
		var text = $(this).text();
		var rawtext = $(this).html();
		var letter = text.substring(0,1);
		$(this).html(rawtext.substring(1));
		$(this).prepend('<span class="initiale">'+letter+'</span>')
		}
	});

}
