

<!--
/**
 * jquery.inputfill.js
 * @author szymonp@k2.pl
 */
(function($){
    $.fn.inputFill = function(options){
    
        var opts = jQuery.extend({}, $.fn.inputFill.defaults, options);
        
        var obj = this;
        
        obj.each(function(){
            var startval = $(this).val();
            $(this).focus(function(){
                if ($(this).val() == startval) {
                    $(this).val(opts.text);
                }
            }).blur(function(){
                if ($(this).val() == opts.text) {
                    $(this).val(startval);
                }
            })
        })
    }
    
    jQuery.fn.inputFill.defaults = {
        text : ''
    };
    
})(jQuery);
//-->
