var hash = location.hash;





setInterval(function()
{    

    if (location.hash != hash )
    {
       
        initAll(window.location.hash);
        hash = location.hash;
    }
      
   
}, 50);



