﻿$(document).ready(function() {
    get_news();
});

function get_news() {
    $.ajax({
        type: "POST",
        contentType: "application/json; charset=utf-8",
        url: "/services/newsservice.asmx/GetTop",
        data: "{c:1}",
        dataType: "json",
        success: function(d) {
            $('#news').html(d.d);
        }
    });
}