var m = '';
var stockint=0;
var ms='';

function pbegin(){
	$.ajax({
		type:"POST",
		url:'http://www.bowenye.com/stock.php',
		data:'?h=111'+Math.round(Math.random()*10000),
		success:function(msg){
			m = msg;
			ms = m.split("@")[0];
			$("#stockh").html( ms);
		}
	}
	);
}

function mfun(){
	stockint +=1;
	if(stockint==4) stockint=0;
	$("#stockh").html ( m.split("@")[stockint]);
}

function msleep(t){
	window.setInterval(mfun,t);
}


