if (!window.HAAMER)
{
    HAAMER = {}
}

HAAMER.HashParse = 
{
    Init: function()
    {
        if (window.location.hash)
        {
            var rsParam = window.location.hash.substr(1).split(';');
            for (var ix = 0; ix < rsParam.length; ix++)
            {
                oParam = rsParam[ix].split('=');
                try
                {
                    HAAMER[oParam[0]].Hash(oParam[1]);
                }
                catch(e){}
            }
        }       
    }
}

document.observe("dom:loaded", HAAMER.HashParse.Init);
