﻿var item;
$(document).ready(function() {
    $.ajaxSetup({
        type: "POST",
        cache: false
    });
    item = new itemMaster();
    item.getnews();
    
})

function itemMaster() {
    var self = this;
    //首页热门
    //alert('asdf');
    this.getnews = function() {
    
        $.post("ajax/gonghui.ashx?act=gh1&typeid=1", function(d) {
        $("#gonghui1").html(d)
        });

        $.post("ajax/gonghui.ashx?act=gh1&typeid=2", function(d) {
            $("#gonghui2").html(d)
        });
    }


}
