﻿// 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 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 yhwhouse2() {
    $("#contactArea2").html("正在加载楼盘问问...");
    $.ajax({
        type: "GET",
        url: "yhwhouse2.aspx",
        data: "u=" + Math.random(),
        success: function (msg) {
            ajaxhouse2(msg);
        }
    });
}
function ajaxhouse2(msg) {
    $("#contactArea2").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);
}
