jQuery.fn.blink = function(options){
	// настройки по умолчанию
	  var options = jQuery.extend({
	    indelay: 600
	  },options);

	return this.each(function() {
		
		alert('123');
		
	});

};

