function controlFocus() {
	$(this).addClass('highlight');
	var hint_title = $(this).siblings('label').text().replace('*','');
	var hint = $(this).siblings('p.formHint').html();
	if (null != hint) {
		$('div#info-bubble .content h1').html(hint_title);
		$('div#info-bubble .content p').html(hint);
		$('div#info-bubble').css({
			left:$(this).offset().left+$(this).outerWidth()+15,
			top:$(this).offset().top-10
		}).show();
	}
}
function controlBlur() {
	$(this).removeClass('highlight');
	$('div#info-bubble').hide().css({left:0,top:0});
	$('div#info-bubble .content h1, div#info-bubble .content p').html('');
}
