﻿$(document).ready(function() {
    // This is takes a callback function for everytime something new is loaded
    $.history.init(function() { });

    if (window.location.href.substring(window.location.href.length - 4) == '#rld') {
        $('body').hide();
        $.history.load('');
        window.location.reload();
        return;
    } else {
        $.history.load('rld');
    }
});
