﻿function BustCache() {
    var d = new Date();
    return Date.UTC(d.getYear(), d.getMonth(), d.getDay(), d.getHours(), d.getMinutes(), d.getSeconds());
}

function AppendCacheBuster(url) {
    url += (url.indexOf('?') > 0) ? '&' : '?';
    url += 'cb=' + BustCache() + '';
    return url;
}


function LoadPage(url, section) {
    url = AppendCacheBuster(url);
    //$(section).html('');
    $(section).parent().load(url + ' ' + section);
    $(window).scrollTop(0);
}
