$(function(){
 	$(document.body).bind("click", function(evt){
		var offsetWidth = Math.round((document.body.offsetWidth - 960)/2);				
		var page_x,page_y;
		if(!evt) {
			page_x = event.x - offsetWidth;
			page_y = event.y;
		} else {
			page_x = evt.clientX  - offsetWidth;
			page_y = evt.clientY;
		}			
		
		if(page_x<0 || page_x>960) {
			return;
		}
	
		var url = "http://xzh.mop.com";
		var st = "http://stat.m.mop.com/c.st?para="+page_x+"|"+page_y+"|"+url;
		
		var i2=new Image(1,1);
		i2.src=st;
		i2.onload=function() {void(0);}		
    });
}); 

