﻿// JavaScript Document
function ycfcwlogin() {
    $("#top_head_con").html("正在加载登录信息...");
    $.ajax({
        type: "GET",
        url: "islogin.aspx",
        data: "u=" + Math.random(),
        success: function (msg) {
            ycfcw_login(msg);
        }
    });
}
function ycfcw_login(msg) {
    $("#top_head_con").html(msg);
}

function qqonline() {
    $(".index_qq").html("正在加载客服信息...");
    $.ajax({
        type: "GET",
        url: "qqonline.aspx",
        data: "u=" + Math.random(),
        success: function(msg) {
            ajaxqq(msg);
        }
    });
}
function ajaxqq(msg) {
    $(".index_qq").html(msg);
}

function yhwhouse() {
    $("#contactArea").html("正在加载邢台楼盘...");
    $.ajax({
        type: "GET",
        url: "yhwhouse.aspx",
        data: "u=" + Math.random(),
        success: function (msg) {
            ajaxhouse(msg);
        }
    });
}
function ajaxhouse(msg) {
    $("#contactArea").html(msg);
}

function footpic() {
    $("#footpic").html("正在加载底部信息...");
    $.ajax({
        type: "GET",
        url: "footpic.aspx",
        data: "u=" + Math.random(),
        success: function (msg) {
            ajaxfootpic(msg);
        }
    });
}
function ajaxfootpic(msg) {
    $("#footpic").html(msg);
}
