$(document).ready(function() {

    $(function() {
        $('#headersearchbox input[type="text"]')
        .add('#FindElec input[type="text"]')
        .add('#FindElecLeftNav input[type="text"]')
        .add('.findelecsearchlhs input[type="text"]')
        .focus(function() {
            $(this).val('');
        });
    });

});

