/*
-------------------------------------------------------- 
The Fabler - Reset password specific js
Author: Sam Lu
Author URI: http://samlu.ca

-------------------------------------------------------- 
*/

/* Instance Variables */

var reg_email_field_cleared = false

// Functions

var Forms = {
	init: function() {
		$("#reset-form").append('<p><input type="submit" value="" id="reset_btn"/></p>');
		
		$(".input-largetext").focus(function(){
			this.value = "";
			$(this).css('color', '#000000');
		});
		
	}
}

$(document).ready(function(){
	Forms.init();
});

