// http://www.hornallanderson.com/#/work/
// http://www.hornallanderson.com/#/project/149/
// http://www.hornallanderson.com/#/company/
// http://www.hornallanderson.com/#/company/approach/
// http://www.hornallanderson.com/#/company/careers/
// http://www.hornallanderson.com/#/blog/
// http://www.hornallanderson.com/#/blogpost/508/
// http://www.hornallanderson.com/#/tag/300 --- Lab

function parseForOldUrls() {
    var hash = window.location.hash;
    if (hash.length > 0) {
        if (hash.indexOf("/project/") != -1) {
            window.location.href = '/work/projects';
        } else if (hash.indexOf("/work") != -1) {
            window.location.href = '/work';
        } else if (hash.indexOf("/company") != -1) {
            window.location.href = '/contact';
        } else if (hash.indexOf("/blog") != -1) {
            window.location.href = '/blog';
        } else if (hash.indexOf("/tag/300") != -1) {
            window.location.href = '/lab';
        }
    }
}
