// JavaScript Document
function ax(ID,Str){
	$.ajax({
		   type:'POST',
		   url:'list.asp',
		   data:{'act':Str},
		   success:function(data){$(ID).html(data);},
		   error:function(){$(ID).html("服务器繁忙，请稍后再试！");}
		   });
	}
$(function(){
	ax("#new","new");
	ax("#hot","hot");
});

function SearchSubmit()
{
$('#sbi').attr("value",$('#cc').val());
$("#ss0").checked = true;
InGG.submit();
}