/**
 * 
 * @param {Object} local_conf
 */
jQuery.fn.inputHint = function(local_conf) {
	//
    var conf = {};

	conf.inputJQ = null;
	
	conf.fadeSpeed = 100;

	//
	var hintJQ = this;
	var inputJQ = null;
	
	/**
	 * 
	 */
	var init = function (local_conf) {
		conf = jQuery.extend(conf, local_conf);

		//
		hintJQ.hide();

		//
		inputJQ = conf.inputJQ;

		//
		inputJQ.focus(function(){
			hintJQ.fadeIn(conf.fadeSpeed);
		});

		inputJQ.blur(function(){
			hintJQ.fadeOut(conf.fadeSpeed);
		});
	}
	
	//
	jQuery(document).ready(
    	function () {
        	init(local_conf);
    	}
    );			
}

