jQuery(function()
{
    jQuery(':input').not('select').not('.postcode_field').focus(function(event)
    {
        jQuery(this).addClass('highlighted');
    })
    .blur(function(event)
    {
        jQuery(this).removeClass('highlighted');
    });
});