$(document).ready( function() {
	i = 1;
	$('#menu a').html('').each( function(){
		$(this).css({'background':'url(menu/ico'+i+'.gif) no-repeat center top'});
		i++;
	} );
	$('.text,.textt').each( function(){
		$(this).html( $(this).html().replace(/\s([\S]{1})\s/g,' $1&nbsp;') );
	} );
	$('input,textarea').click( function(){ $(this).select(); } );
} );

