var Main = 
{
  init: function()
  {
    
    $('#language_switch').niceselect();
  
    switch_project_form = $('#switch-project-form'); 
    switch_project_form.niceselect({togglerLabel : switch_project_form.find('option:first').html(), removeFirst: true});

    $(".nojs").hide(); 
    
  },
    
  redirectAjaxTimeoutResponse: function(e)
  {
    if($(e).html().match('id="session-timeout"'))
    {
      window.location = $('#login-url').attr('href');
    }
  }
  
}



$(document).ready(function(){ Main.init() });
