
$(document).ready(function() {  
    enableMore();
     
    
});


function enableMore() { 
    $('div[class="home-more"]').html('<a href="javascript:;">&lt;&lt; ' + $('div[class="home-more"]').text() + '</a>').one('click', function() {
    $(this).html('Loading...').attr('class', '').load("/canada/home/default-more.aspx/?date=" + lastWeek(), enableMore);
    })

}

function lastWeek() {
   
    if (!window.currentDate || window.currentDate == '') { window.currentDate = new Date(); }
    else if (!window.currentDate.getDate) {
        window.currentDate = new Date(window.currentDate.split('-')[1] + '/' + window.currentDate.split('-')[2] + '/' + window.currentDate.split('-')[0]);
    }
    window.currentDate.setDate(window.currentDate.getDate() - 7);
    var month = window.currentDate.getMonth();
    month++;
    return window.currentDate.getFullYear() + '-' + month + '-' + window.currentDate.getDate();
}