[jQuery] [Validate] How to specify location for error message ?!

[jQuery] [Validate] How to specify location for error message ?!


Hi everyone, i'm having trouble with the jQuery Validate plugin. I
easily find how to validate my form, but i would like to specify
location for every error message the validate plug-in send. But i
don't find, i think it's withe the option "errorPlacement" but i don't
know how to use it exactly.
Here is my code :
$(document).ready(function(){
$("#News").validate({
        rules:
{
            TitleNews: {required: true,minLength:
10},
            IntroNews: {required: false,minLength:
150},
ContentNews: {required:
true,minLength: 200},
            TagsNews: {required: false,minLength: 5}
        },
        messages:
{
            TitleNews:
{    required: "<img src=\"style/imgs/
action_stop.gif\" alt=\"\" />Merci de rentrer un titre<img src=\"style/
imgs/action_stop.gif\" alt=\"\" />",
                minlength: "Votre titre doit contenir au
moins 10 caractères !"
            },
            IntroNews: {minlength: "L'intro doit
contenir au moins 150 caractères !"},
            ContentNews:
{ required: "Merci de rentrer le
contenu de votre news !",
                minlength: "Le contenu de votre news
doit être au moins de 200 caractères !"
            },
            TagsNews: {minlength: "Le contenu des
tags doit être d'au moins 5 caractères !"}
        }
    });
});
And the HTML :
<form action="toto.php" method="POST" name="News" id="News">
<label for="TitleNews">Titre de la news*</label>
<input name="TitleNews" class="required" minlength="5" />
<div id="TitleError"></div>
<br />
<label>BBCode<br /><i>Pour l'intro.</i></label>
<div class="BoxToolbar">
    <div id="hautdroit"></div>
<div id="hautgauche"></div>
    <div id="contenu">
<?php AfficheToolbarBBCode("IntroNews") ;?>
    </div>
    <br />
</div>
<label for="IntroNews">Intro de la news</label>
<textarea name="IntroNews" id="IntroNews" style="height:
150px;"></textarea>
<div id="IntroError"><img src="style/imgs/action_stop.gif"
alt="" />Intro Error !! <img src="style/imgs/action_stop.gif" alt="" /