$(document).ready(function()
{
    $('.formElement input, .formElement textarea, .formElement select').focus(function(){
        $(this).parents('.formElement').addClass("highlightformelement");
    }).blur(function(){
        $(this).parents('.formElement').removeClass("highlightformelement");
    });
});