﻿(function($) {
    window.refreshLayout = function() {
        var docWidth = $(document.body).width();
        var wrapperWidth;
        if (docWidth <= 695) {
            wrapperWidth = 695;
        } else {
            wrapperWidth = Math.floor(docWidth * 0.99);
        }
        $("#wrapper").width(wrapperWidth);
        $("#middlecol").width(wrapperWidth - 390);
    }

    $(document).ready(function() {
        refreshLayout();
        $(window).bind("resize", refreshLayout);

        $("#btnSearch").bind("click", function() {
            var key = $.trim($("#inpKey").val());
            if (key == "") {
                alert("请输入搜索关键字!");
                return false;
            }
            location.assign("/list/search.html?key=" + escape(key));
            return false;
        });
        $(".home-news-block:odd").css("clear", "right");
    });
})(jQuery);