﻿$(function () {
    $.get("/home/top", { date: new Date().getTime() }, function (data) { $("#tbodyTop").html(data); }, "html");
    $.get("/home/getnub", { date: new Date().getTime() }, function (data) { $("#car").text(data); }, "text");
    $("#center_start").live("mouseover", function () {
        $("#center_menu").css("left", $(this).offset().left).show();
    });
    $("#center_menu").live("mouseleave", function () { $(this).hide(); });
});
//添加到收藏夹
function addBookmark(title, url) {
    if (window.sidebar) {
        window.sidebar.addPanel(title, url, "");
    }
    else if (document.all) {
        window.external.AddFavorite(url, title);
    }
    else if (window.opera && window.print) {
        return true;
    }
}
