

function createIndex()
{
	$.ajax({
	type:"get",		
	url:"/createindex.asp",
	beforeSend:function(XMLHttpRequest){		
		//alert("b");
		},
	success:function(data, textStatus){		
		//alert("s");
		},
	complete: function(XMLHttpRequest, textStatus){
		//alert("c");
			//HideLoading();
			//window.location.reload();
		},
	error: function(){			
	//alert("e");
		}
	
	});
}

$(document).ready(function(){							   
						   //$(".ColumnHot li p").css("text-align","left");
						   $(".mybigpic").hover(function(e){showBigPicDiv(this,e.pageY,e.pageX); },function(){ hideBigPicDiv();});
						   document.cookie="propath=/";						    
						   })


