jQuery(document).ready(function () {
	// handle default input labeling
	jQuery("input[type=text], input[type=password]").focus(function () {
		if (jQuery(this).val() == jQuery(this)[0].title) {
			jQuery(this).removeClass("has-default");
			jQuery(this).val("");
		}
	});
	jQuery("input[type=text], input[type=password]").blur(function () {
		if (jQuery(this).val() == "") {
			jQuery(this).addClass("has-default");
			jQuery(this).val(jQuery(this)[0].title);
		}
	});
	jQuery("input[type=text], input[type=password]").blur();
	// login switch-a-roo
	jQuery('#helper').click(function (e) {
		e.preventDefault();
		jQuery(this).parent().siblings('#login_form').toggle();
		jQuery(this).parent().siblings('#helper_form').toggle();
		jQuery(this).text(jQuery(this).text() == 'Lost Password?' ? 'Ready To Login?' : 'Lost Password?');
		jQuery(this).siblings('span').text(jQuery(this).siblings('span').text() == 'Members Login:' ? 'Send Login Information:' : 'Members Login:');
	});
});
