jQuery().ready(function(){
    if (!$('p.status, p.success').length)
    {
        $('form input[type="text"], form textarea').click(function() {
             $(this).val('');
             $(this).click(function() {});
        });
    }
});