// JavaScript Document

//搜索

$(function(){

		   if (window.location.href.indexOf("search.html") > 1){
			   $.getQueryString({
								ID:"keyword",
								onSuccess:function(op,Result){
									if (Result.length <2){alert('搜索字符串字数应大于1个字符！');return false;}
									$("div.searchresult").addClass("loading")
									
									$.post(
										 "/app/search.do",{keywords:Result,language:"cn"},
										   function(html){
											   $("div.search input.searchbox").val(unescape(Result))
											   $("div.searchresult").removeClass("loading");
											   $("div.searchresult").html(html);
											   $("div.subsubcategories ul:first > li").jHighlight({highlightClass:"highlight"})
											   $("div.allproduct ul > li").jFilterProduct({productList:$("div.subsubcategories > ul > li"),rowCount:5});		
											   $("div.subsubcategoriespagination ul").jPagination({list:$("div.subsubcategories > ul > li")});
											   }
										   )
									}
								 })			   
			   }

		   
		   
		   
		   
		   
		   })

//
//
//
