$(document).ready(function(){

    $('.hint').focus(function(){
        $('#'+$(this).attr('name')+'_prompt').show();
	$('#'+$(this).attr('name')+'_error').attr('class', 'error_hint');

	if($(this).attr('name') == 'user_phone' || $(this).attr('name') == 'phone_prefix') {
	    $('#phone_error').hide();
	}
	if($(this).attr('name') == 'user_phone2' || $(this).attr('name') == 'phone2_prefix') {
	    $('#phone2_error').hide();
	}
    });

    $('.hint').blur(function(){
    	$('span[id$=prompt]').hide();
    });

});

