(function($){
    $.fn.warn_empty_input = function(){
        if(this.val() && !this.hasClass('blur')){
            return false;
        }
        else{
            this
                .animate({backgroundColor:'red'}, 300)
                .animate({backgroundColor:'white'}, 300)
                .animate({backgroundColor:'red'}, 300)
                .animate({backgroundColor:'white'}, 300)
                .animate({backgroundColor:'red'}, 300)
                .animate({backgroundColor:'white'}, 300);
            return true;
        }
    };
})(jQuery)
