
var endlessScrolling;

function initSubPageList(maxIndex, ajaxUrl) {
  $(function() {
    endlessScrolling = new EndlessScrolling(5, 3, maxIndex, ajaxUrl, 'module');
  });  
}

$(function(){
  $('#modules_container .module').each(function(index, module) {
    var navId = getDataFromClass($(module), 'module_');

    if(!($.browser.msie)) {
      $(module).hover(
        function() { subnavItemToggleCufonStyle($('.subnav .header_' + navId), 'hover'); }
      );
    }
  });
});

