$(document).ready(function(){
	$('input.focus').each(function(){
		elm = $(this);
		if (elm.val() == '') {
			elm.val(elm.attr('title'));
		}
		elm.focus(function(){
			e = $(this);
			if (e.val() == e.attr('title')) {
				e.val('');
			}
		});
		elm.blur(function(){
			e = $(this);
			if (e.val() == '') {
				e.val(e.attr('title'));
			}
		});
	});
});
