(function($){

	// jQuery plugin definition
	$.fn.vip_search = function() {
		var _value = $(this).attr('value');
		
		$(this).focus(function(){
			$(this).attr('value', '');
		});
		
		$(this).blur(function(){
			if($(this).attr('value') == '' )
				$(this).attr('value', _value);
		});
		// allow jQuery chaining
		return this;
	};
})(jQuery);