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

