/**
 * Form.js
 * @author Pieter De Baets <pieter@netlash.com>
 */

	$(document).ready(function() {
		jQuery('#password').pstrength({displayMinChar: false, minChar: 6, raisePower: 1.5});
		jQuery('#password').pstrength.changeScore('length', 8);
		jQuery('#password').pstrength.changeScore('one_number', 5);
		jQuery('#password').pstrength.changeScore('upper_lower_combo', 5);
		jQuery('#password').pstrength.changeScore('letter_number_combo', 5);
		jQuery('#password').pstrength.calculateScore();
	});