// Display a help wanted box under the sidebar menu
// Included on some start pages, to encourage volounteers to help in the mozilla-europe.org's translation effort
// Date: 2007-08-13

function helpWanted() {
	$("<div id='helpwanted'></div>").appendTo("#side")
        .css("display", "none")
        .css("background-color", "#ffa")
        .css("border", "10px solid #ddd")
        .css("padding", "0px 10px 10px")
        .css("margin-top", "20px")
        .append("<h3>We need your help!</h3>")
        .append("<p>The Mozilla project is looking for " + helplocale + " volunteers who would like to help in the Mozilla-Europe.org site's translation effort.</p>")
        .append("<p>If you are looking for a way to participate in the Mozilla project and want to help your language's users get to know Mozilla, we will be more than happy to welcome you in the project.</p>")
        .append("<p>If you're willing to give it a try, <a href='mailto:pascal.chevrel@mozilla-europe.org?subject=" + helplocale + " translation of the Mozilla Europe website'>just contact Pascal Chevrel by e-mail</a>.</p>")
        .fadeIn("slow")
    ; 
}
