// Custom Delay Plugin by The Graphix Works

(function($){
  $.fn.delayTime = function(){
	var delay = 0;
	return this.each(function(){
		$(this).delay(delay).fadeIn(225);
		delay += 125;
	});
  };
})(jQuery);
