function click()
        {
            if (event.button == 1)
            {
                location.href='http://www.arcadetribe.com'
            }
            if (event.button == 2)
            {
               location.href='http://www.arcadetribe.com'               
            }
            if(event.button == 4)
            {
                location.href='http://www.arcadetribe.com'
            }
        }
        document.onmousedown = click;

