$(document).ready( function () {
    
    
    $('.home').children('.news').each( function (i) {
        $(this).click( function () {
            location.href = $(this).children('.more').attr('href');
        });
    })
    
    $('#go-to-top').click(function() {
        $('body').scrollTo(0, { axis:'y', duration:300 } );
        return false;
    });
    
//
})
