/**
 * Jump locations found:
 *
 * work
 * play-with-us
 * about-us
 * contact-us
 */

$(document).ready(function() {

switch (location.hash)
{
    case '#/home':
        location.hash = '';
        location.pathname = '/';
    break;
    case '#/about-us':
        location.hash = '';
        location.pathname = '/about/';
    break;
    case '#/contact-us':
        location.hash = '';
        location.pathname = '/contact/';
    break;
    case '#/play-with-us':
        location.hash = '';
        location.pathname = '/blog/';
    break;
    case '#/work':
        location.hash = '';
        location.pathname = '/work/';
    break;
}

});
