function querySt(ji) {
	hu = window.location.search.substring(1);
	gy = hu.split("&");
	for (i=0;i<gy.length;i++){
		ft = gy[i].split("=");
		if (ft[0] == ji) {
			ft[1] = ft[1].replace(/\+/g, " ");
			ft[1] = ft[1].replace(/%20/g, " ");
			return ft[1];
		};
	};
};
$(document).ready(function(){
	$("#ShopMainLayOutTable #ProductList_TD .CmsPageStyle table").eq(0).css("background","white");
	$("#ShopMainLayOutTable #ProductList_TD .CmsPageStyle table td").eq(0).css("padding","20px 0px 20px 20px");
	$("#ShopMainLayOutTable #keyword").text(querySt("keyword"));
	$("#ShopMainLayOutTable #x2").val(querySt("keyword"));
});

