﻿function systemclick(){
$(function() {
	$("a").click(function (){
		$.ajax({
		   type: "POST",
		   url: "Click.aspx",
		   data: "DO=Click&Text="+($(this).text()==""?$(this).children().attr("src"):$(this).text())+"&href="+$(this).attr("href")+"&page="+location.href,
		   success: function(msg){
		   }
		});
	});
});
}
