$('document').ready(function(){
	$('#register input, #register select').focus(function(){
		$('span.hints').css('color','#999');
		$(this).parent('p').children('span').css('color','#333');		
	});
});
