$(document).ready(function(){  
  $("input").focus(function () {
            $(this).addClass("focused");
            $(this).prev("span").fadeOut();
    });
    $("input").blur(function () {
            $(this).removeClass("focused");
            if ($.trim(this.value) == ''){
                    $(this).prev("span").css('display','inline');
            }
    });
    $("textarea").focus(function () {
            $(this).addClass("focused");
            $(this).next("span").fadeOut();
    });
    $("textarea").blur(function () {
            $(this).removeClass("focused");
            if ($.trim(this.value) == ''){
                    $(this).next("span").css('display','inline');
            }
    });
    
    $("#claim").validation();
});
