jQuery(document).ready(function(){
	jQuery('.userRegistration .login').not('.active').find('.hint').inputHint({inputJQ: jQuery('#login')});
	jQuery('.userRegistration .password').not('.active').find('.hint').inputHint({inputJQ: jQuery('#password')});
    jQuery('.userRegistration .passwordRepeat').not('.active').find('.hint').inputHint({inputJQ: jQuery('#passwordRepeat')});
    jQuery('.userRegistration .nick').not('.active').find('.hint').inputHint({inputJQ: jQuery('#nick')});   
});

