var FrontPublic_hotKeyword01 = {
	//记录点击关键词的点击次数及跳转到相应的搜索页面.url:访问地址,compId实例名,modelCode模块名
	hotKeywordClickEvent:function(url, compId, modelCode){
		$("#"+compId+" ul li a").click(function(){
			$.post(url,"id="+$(this).attr("id"));
			
			var name = $(this).attr("title");
			if("BS_QYXW"===modelCode){
				name = encodeURIComponent(name);
			}
			$(this).parents("ul").prev().find(":first").val(name);
			$(this).parents("ul").prev().submit();
		});
	}
}
