define(['domReady!','jquery'],function(domReady,$){'use strict';var Lazyload=function(options){var that=this;that.defaults={expires:null,path:'/',domain:null,secure:false,lifetime:null};that.opt=$.extend(that.default,options);function startLoading(){if(that.opt.current_page=$(that.opt.trigger_element).offset().top-that.opt.padding){startLoading();}});} if(that.opt.trigger_element){$(that.opt.trigger_element).click(function(){startLoading();});}};return function(options){new Lazyload(options)};});