﻿$(document).ready(function() {
    // Redirect the pub-specific URL to one of the segment URLs.
    var redirectURL = $("#hiddenContainer input:hidden:first").val();
    if (redirectURL != null && redirectURL != "") {
        location.href = "/" + redirectURL;
    }
});