// JavaScript Document
$(document).ready(function () {
    // Remove the border on the last nav item 
    $('#nav li:last a').addClass('last');


    // Set the login box to empty upon click
    $('#login').bind('click', function () {
        var field = $(this);
        if (field.val() == "your email" || field.val() == "Votre courriel") field.val("");
    });
});

