

jQuery(document).ready(function() {
	jQuery(".password").click(function () {
		
    	jQuery(".heighter").fadeOut("fast", function() {
    		jQuery(".heighter").html('<br /><br /><img src="images/title-forgotten-password.gif" alt="Forgotten your password?" border="0" /><form action="club/remind.php" method="post"><p>That'+"'s okay! I forget my own name sometimes!<br />"+'Fill in your email and we will send you a reminder.</p><br /><label for="remind">Email address</label><input type="text" id="remind" value="" name="remind" class="dwidth" /><input type="submit" class="winsub" value="send" /></form>');
    			jQuery(".heighter").fadeIn("fast");
    		}); 
	});
	
	
});

