[jQuery] [validation] Validate on dynamic loaded forms?

[jQuery] [validation] Validate on dynamic loaded forms?


This does not work:
$(document).ready(function()
{
$("#menu_move_eq").click( function() {
$(".hiddenform").hide();
$("#movebox").show();
})
$("#menu_new_equipment").click( function() {
$(".hiddenform").hide();
$
("#equipmentbox").load("form_equipment.php","",LoadFormEquipment);
$("#equipmentbox").show();
})
}
);
function LoadFormEquipment() {
$("#commentForm").validate(); /// Fails, never returns.
$("#cemail").hide("slow");
$("#cemail").show("slow");
}
The form_equipment.php:
<form class="cmxform" id="commentForm" method="get" action="">
<fieldset>
<legend>A simple comment form with submit validation and default
messages</legend>


<label for="cname">Name</label>
<em>*</em><input id="cname" name="name" size="25"
class="required" minlength="2" />






<label for="cemail">E-Mail</label>
<em>*</em><input id="cemail" name="email" size="25"
class="required email" />






<label for="curl">URL</label>
<em> </em><input id="curl" name="url" size="25" class="url"
value="" />






<label for="ccomment">Your comment</label>
<em>*</em><textarea id="ccomment" name="comment" cols="22"
class="required"></textarea>






<input class="submit" type="submit" value="Submit"/>



</fieldset>
</form>
Basically it is the demo form from http://docs.jquery.com/Plugins/Validation#Example
It doesn't work. I thought that by using the callback function,
everything would be ready for the jquery to parse the form. But
nothing happens. Is this even possible in jQuery or am I doing
something wrong?
J.