//
// custom jquery plugin for drogisterijdelang
//

(function($) {

$.fn.extend({
		yellowFade: function(time) {
      $(this).css("background-color", "yellow").animate({
        backgroundColor: "#F3EFF5"
      }, time);
      return $(this);
		}
  });

})(jQuery);
