
jQuery(document).ready(function() {
    $("input,textarea").focus(function () {
        jQuery('.fieldtip').hide();
        jQuery("#" + jQuery(this).attr('name') + "tip").show();
    });
});
