/* Copyright (c) 2008 Author: Kristoffer Ahl, Spinit AB */ MB.createNamespace("Pages.Startpage"); MB.Pages.Startpage = function() { return { initPage: function() { /* FEED ROLL*/ var options = {containerPosition: "prepend", mapControlType: "none", useCustomOverlay: true, zoomLevel: 6}; $.jeo.init("#Main-Content .wrap:first-child", options, function(el, options) { var options = { delay: 4000, feedRollDetailsUrl: MB.Config.ApplicationPath+"/Search/DetailsJSON.aspx?", feedRollUrl: MB.Config.ApplicationPath+"/Search/ResultsJSON.aspx", loop: true }; $.jeo.loadFeedRoll(el, options); }); } } }(); $(document).ready(MB.Pages.Startpage.initPage);