(function($) {
	$.fn.linkNotify = function (progressbarcolor) {
		progressbarcolor = progressbarcolor || '#eeeeee';
		
		var ignore = false;
		$(document).keydown(function () {
			ignore = true;
		}).keyup(function () {
			ignore = false;
		});
			
		this.not('[href^="#"]').not(':has(img)').not('[target="_blank"]').each(function () {
			$(this).click(function () {
				if(ignore == true)
				{
					alert("ignor");
					return;
				}
				
				var $thisel = $(this);
				var $thisoff = $thisel.offset();
				
				$('<div></div>').appendTo('body').css({'position': 'absolute', 'z-index': '-1', 'top': $thisoff.top, 'left': $thisoff.left, 'width': '0', 'height': $thisel.height(), 'background-color': progressbarcolor}).animate({'width': $thisel.width()}, 5000);
			});
		});
		return this;
	};
})(jQuery);
