/*
 * Forceload plugin © YES 2010
 * 
 * Forces the "load" event in browsers where the event may not trigger for cached images
 * 
 * Usage:
 * 
 *	$("#image").forceload(function(){
 *		alert("image loaded");
 *	});
 *
*/

(function($){
	$.fn.extend({
		forceload: function (callback) {
			if ($.isFunction(callback)) {
				callback.call(this);
			}
		}
	});
})(jQuery);
