$('.toggle-input-text')

.each(function(ev){
	var title = $(this).attr('title')
	$(this).val(title);
})

.focus(function(ev) {
	if ($(this).val() == $(this).attr('title')) {
		$(this).val('');
	}
})

.blur(function(ev) {
	var alt = $(this).attr('title');
	if ($(this).val() == '') {
		$(this).val(alt)
	}
});
