// 当前页面信息
pageInfo = {
    name : "articleList"    // name 为保持 搜索栏 编辑模式状态留置
}
jQuery(document).ready(function(){
    /**
 * 询价
 */
jQuery("#quoteprice").click(function(){
	var quoteprice_id = jQuery("input[name=quoteprice_id]:first");
	var quoteprice_name = jQuery("input[name=quoteprice_name]:first");
	Quoteprice.addItem(quoteprice_id.val(), quoteprice_name.val());
	directTo("quoteprice.php");
});
//    jQuery("input[name=quoteprice][type=checkbox]").each(function(i){
//        var checkBox = jQuery(this);
//        if (Quoteprice.hasItem(checkBox.val())){
//            checkBox.attr("checked",true);
//        }else{
//            checkBox.attr("checked",false);
//        }
//        checkBox.click(function(){
//            var id = checkBox.val();
//            if (checkBox.attr("checked")){
//                Quoteprice.addItem(id, checkBox.siblings("a:first").text());
//            }else{
//                Quoteprice.delItem(id);
//            }
//        });
//    });
});