(function($){
	$.fn.wave = function(inc,speed)
	{
		var timer = inc;
		this.each(function()
		{
			var obj = $(this);
			setTimeout(function() { obj.fadeIn(speed); },timer);
			timer += inc;
		});
	};
})(jQuery);
